@xmobitea/gn-typescript-client 2.6.12 → 2.6.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/gearn.js.client.js +183 -57
- package/dist/gearn.js.client.min.js +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +183 -57
- package/dist/runtime/GNNetwork.d.ts +1 -1
- package/dist/runtime/helper/GNSupport.d.ts +20 -0
- package/dist/runtime/{entity → helper}/OperationHelper.d.ts +1 -1
- package/dist/runtime/helper/StorageService.d.ts +18 -0
- package/dist/runtime/networking/NetworkingPeer.d.ts +1 -1
- package/dist/runtime/typescript/ServiceUpdate.d.ts +2 -0
- package/docs/COCOS_CREATOR_INTEGRATION.md +116 -0
- package/examples/cocos-creator/GearNExample.ts.txt +176 -0
- package/package.json +3 -2
- package/srcSwift/Package.swift +32 -0
- package/srcSwift/Sources/GearN/runtime/GNNetwork.swift +530 -0
- package/srcSwift/Sources/GearN/runtime/GNNetworkAuthenticateApi.swift +178 -0
- package/srcSwift/Sources/GearN/runtime/GNNetworkCharacterPlayerApi.swift +1162 -0
- package/srcSwift/Sources/GearN/runtime/GNNetworkCloudScriptApi.swift +154 -0
- package/srcSwift/Sources/GearN/runtime/GNNetworkContentApi.swift +208 -0
- package/srcSwift/Sources/GearN/runtime/GNNetworkDashboardApi.swift +240 -0
- package/srcSwift/Sources/GearN/runtime/GNNetworkGamePlayerApi.swift +1369 -0
- package/srcSwift/Sources/GearN/runtime/GNNetworkGroupApi.swift +1100 -0
- package/srcSwift/Sources/GearN/runtime/GNNetworkInventoryApi.swift +937 -0
- package/srcSwift/Sources/GearN/runtime/GNNetworkMasterPlayerApi.swift +2323 -0
- package/srcSwift/Sources/GearN/runtime/GNNetworkMultiplayerApi.swift +298 -0
- package/srcSwift/Sources/GearN/runtime/GNNetworkStoreInventoryApi.swift +397 -0
- package/srcSwift/Sources/GearN/runtime/common/Action0.swift +3 -0
- package/srcSwift/Sources/GearN/runtime/common/Action1.swift +3 -0
- package/srcSwift/Sources/GearN/runtime/common/Action2.swift +3 -0
- package/srcSwift/Sources/GearN/runtime/common/Action3.swift +3 -0
- package/srcSwift/Sources/GearN/runtime/common/Action4.swift +3 -0
- package/srcSwift/Sources/GearN/runtime/common/GNArray.swift +204 -0
- package/srcSwift/Sources/GearN/runtime/common/GNData.swift +108 -0
- package/srcSwift/Sources/GearN/runtime/common/GNHashtable.swift +200 -0
- package/srcSwift/Sources/GearN/runtime/config/GNServerSettings.swift +95 -0
- package/srcSwift/Sources/GearN/runtime/constant/Commands.swift +28 -0
- package/srcSwift/Sources/GearN/runtime/constant/EventCode.swift +10 -0
- package/srcSwift/Sources/GearN/runtime/constant/OperationCode.swift +252 -0
- package/srcSwift/Sources/GearN/runtime/constant/ReturnCode.swift +19 -0
- package/srcSwift/Sources/GearN/runtime/constant/enumType/ExecuteResponseStatus.swift +9 -0
- package/srcSwift/Sources/GearN/runtime/constant/enumType/FriendStatus.swift +8 -0
- package/srcSwift/Sources/GearN/runtime/constant/enumType/GoogleLoginType.swift +6 -0
- package/srcSwift/Sources/GearN/runtime/constant/enumType/GroupStatus.swift +8 -0
- package/srcSwift/Sources/GearN/runtime/constant/enumType/InvalidMemberType.swift +19 -0
- package/srcSwift/Sources/GearN/runtime/constant/enumType/ItemType.swift +6 -0
- package/srcSwift/Sources/GearN/runtime/constant/enumType/MatchmakingMemberStatus.swift +7 -0
- package/srcSwift/Sources/GearN/runtime/constant/enumType/MatchmakingTicketStatus.swift +9 -0
- package/srcSwift/Sources/GearN/runtime/constant/enumType/OwnerType.swift +10 -0
- package/srcSwift/Sources/GearN/runtime/constant/enumType/PermissionDataItem.swift +6 -0
- package/srcSwift/Sources/GearN/runtime/constant/enumType/PushPlatformType.swift +6 -0
- package/srcSwift/Sources/GearN/runtime/constant/enumType/RequestRole.swift +7 -0
- package/srcSwift/Sources/GearN/runtime/constant/enumType/RequestType.swift +16 -0
- package/srcSwift/Sources/GearN/runtime/constant/enumType/StoreItemType.swift +6 -0
- package/srcSwift/Sources/GearN/runtime/constant/enumType/StoreReceiveType.swift +9 -0
- package/srcSwift/Sources/GearN/runtime/constant/errorCode/ErrorCode.swift +58 -0
- package/srcSwift/Sources/GearN/runtime/constant/parameterCode/ParameterCode.swift +672 -0
- package/srcSwift/Sources/GearN/runtime/entity/DataMember.swift +196 -0
- package/srcSwift/Sources/GearN/runtime/entity/GNMetadata.swift +9 -0
- package/srcSwift/Sources/GearN/runtime/entity/InvalidMember.swift +11 -0
- package/srcSwift/Sources/GearN/runtime/entity/OperationEvent.swift +38 -0
- package/srcSwift/Sources/GearN/runtime/entity/OperationHelper.swift +28 -0
- package/srcSwift/Sources/GearN/runtime/entity/OperationRequest.swift +62 -0
- package/srcSwift/Sources/GearN/runtime/entity/OperationResponse.swift +98 -0
- package/srcSwift/Sources/GearN/runtime/entity/models/AuthenticateModels.swift +351 -0
- package/srcSwift/Sources/GearN/runtime/entity/models/AuthenticateRequestModels.swift +81 -0
- package/srcSwift/Sources/GearN/runtime/entity/models/AuthenticateResponseModels.swift +108 -0
- package/srcSwift/Sources/GearN/runtime/entity/models/CharacterPlayerModels.swift +1045 -0
- package/srcSwift/Sources/GearN/runtime/entity/models/CharacterPlayerRequestModels.swift +821 -0
- package/srcSwift/Sources/GearN/runtime/entity/models/CharacterPlayerResponseModels.swift +588 -0
- package/srcSwift/Sources/GearN/runtime/entity/models/CloudScriptModels.swift +187 -0
- package/srcSwift/Sources/GearN/runtime/entity/models/CloudScriptRequestModels.swift +84 -0
- package/srcSwift/Sources/GearN/runtime/entity/models/CloudScriptResponseModels.swift +59 -0
- package/srcSwift/Sources/GearN/runtime/entity/models/ContentModels.swift +195 -0
- package/srcSwift/Sources/GearN/runtime/entity/models/ContentRequestModels.swift +116 -0
- package/srcSwift/Sources/GearN/runtime/entity/models/ContentResponseModels.swift +81 -0
- package/srcSwift/Sources/GearN/runtime/entity/models/DashboardModels.swift +426 -0
- package/srcSwift/Sources/GearN/runtime/entity/models/DashboardRequestModels.swift +160 -0
- package/srcSwift/Sources/GearN/runtime/entity/models/DashboardResponseModels.swift +82 -0
- package/srcSwift/Sources/GearN/runtime/entity/models/GamePlayerModels.swift +1334 -0
- package/srcSwift/Sources/GearN/runtime/entity/models/GamePlayerRequestModels.swift +643 -0
- package/srcSwift/Sources/GearN/runtime/entity/models/GamePlayerResponseModels.swift +213 -0
- package/srcSwift/Sources/GearN/runtime/entity/models/GenericModels.swift +171 -0
- package/srcSwift/Sources/GearN/runtime/entity/models/GroupModels.swift +850 -0
- package/srcSwift/Sources/GearN/runtime/entity/models/GroupRequestModels.swift +485 -0
- package/srcSwift/Sources/GearN/runtime/entity/models/GroupResponseModels.swift +165 -0
- package/srcSwift/Sources/GearN/runtime/entity/models/InventoryModels.swift +679 -0
- package/srcSwift/Sources/GearN/runtime/entity/models/InventoryRequestModels.swift +413 -0
- package/srcSwift/Sources/GearN/runtime/entity/models/InventoryResponseModels.swift +141 -0
- package/srcSwift/Sources/GearN/runtime/entity/models/MasterPlayerModels.swift +378 -0
- package/srcSwift/Sources/GearN/runtime/entity/models/MasterPlayerRequestModels.swift +147 -0
- package/srcSwift/Sources/GearN/runtime/entity/models/MasterPlayerResponseModels.swift +318 -0
- package/srcSwift/Sources/GearN/runtime/entity/models/MultiplayerModels.swift +319 -0
- package/srcSwift/Sources/GearN/runtime/entity/models/MultiplayerRequestModels.swift +125 -0
- package/srcSwift/Sources/GearN/runtime/entity/models/MultiplayerResponseModels.swift +45 -0
- package/srcSwift/Sources/GearN/runtime/entity/models/StoreInventoryModels.swift +633 -0
- package/srcSwift/Sources/GearN/runtime/entity/models/StoreInventoryRequestModels.swift +173 -0
- package/srcSwift/Sources/GearN/runtime/entity/models/StoreInventoryResponseModels.swift +61 -0
- package/srcSwift/Sources/GearN/runtime/entity/request/CustomOperationRequest.swift +42 -0
- package/srcSwift/Sources/GearN/runtime/entity/response/CustomOperationResponse.swift +49 -0
- package/srcSwift/Sources/GearN/runtime/entity/response/GetAuthInfoResponse.swift +43 -0
- package/srcSwift/Sources/GearN/runtime/entity/response/HealthCheckResponse.swift +86 -0
- package/srcSwift/Sources/GearN/runtime/entity/response/UploadFileResponse.swift +15 -0
- package/srcSwift/Sources/GearN/runtime/helper/CodeHelper.swift +107 -0
- package/srcSwift/Sources/GearN/runtime/helper/ConverterService.swift +98 -0
- package/srcSwift/Sources/GearN/runtime/helper/EnumUtility.swift +34 -0
- package/srcSwift/Sources/GearN/runtime/helper/GNSupport.swift +41 -0
- package/srcSwift/Sources/GearN/runtime/helper/GNUtils.swift +66 -0
- package/srcSwift/Sources/GearN/runtime/helper/MessagePackConverterService.swift +21 -0
- package/srcSwift/Sources/GearN/runtime/helper/StorageService.swift +29 -0
- package/srcSwift/Sources/GearN/runtime/logger/GNDebug.swift +33 -0
- package/srcSwift/Sources/GearN/runtime/networking/AuthenticateStatus.swift +24 -0
- package/srcSwift/Sources/GearN/runtime/networking/IPeer.swift +8 -0
- package/srcSwift/Sources/GearN/runtime/networking/NetworkingPeer.swift +368 -0
- package/srcSwift/Sources/GearN/runtime/networking/OperationPending.swift +81 -0
- package/srcSwift/Sources/GearN/runtime/networking/PeerBase.swift +228 -0
- package/srcSwift/Sources/GearN/runtime/networking/handler/IServerEventHandler.swift +20 -0
- package/srcSwift/Sources/GearN/runtime/networking/http/HttpPeer.swift +226 -0
- package/srcSwift/Sources/GearN/runtime/networking/http/HttpTypes.swift +24 -0
- package/srcSwift/Sources/GearN/runtime/networking/http/NetworkingHttpPeerBase.swift +13 -0
- package/srcSwift/Sources/GearN/runtime/networking/http/NetworkingPeerUrlSession.swift +125 -0
- package/srcSwift/Sources/GearN/runtime/networking/request/NetRequest.swift +19 -0
- package/srcSwift/Sources/GearN/runtime/networking/response/NetResponse.swift +13 -0
- package/srcSwift/Sources/GearN/runtime/networking/socket/NetworkingPeerSocketIOClient.swift +244 -0
- package/srcSwift/Sources/GearN/runtime/networking/socket/NetworkingSocketPeerBase.swift +59 -0
- package/srcSwift/Sources/GearN/runtime/networking/socket/SocketPeer.swift +136 -0
- package/tsconfig-build.cocos.json +31 -0
- package/webpack.config.cocos.mjs +78 -0
|
@@ -0,0 +1,588 @@
|
|
|
1
|
+
import Foundation
|
|
2
|
+
|
|
3
|
+
public struct CharacterPlayerResponseModels {
|
|
4
|
+
|
|
5
|
+
public class AddPlayerFriendOperationResponse: CustomOperationResponseAbstract<CharacterPlayerModels.EmptyResponseData> {
|
|
6
|
+
public override func setupOperationResponse(operationResponse: OperationResponse) {
|
|
7
|
+
super.setupOperationResponse(operationResponse: operationResponse)
|
|
8
|
+
if !self.hasReturnCodeError() {
|
|
9
|
+
if let params = self.parameters {
|
|
10
|
+
self.responseData = ConverterService.deserializeObject(gnHashtable: params, cls: CharacterPlayerModels.EmptyResponseData.self)
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
public class AddSegmentOperationResponse: CustomOperationResponseAbstract<CharacterPlayerModels.EmptyResponseData> {
|
|
17
|
+
public override func setupOperationResponse(operationResponse: OperationResponse) {
|
|
18
|
+
super.setupOperationResponse(operationResponse: operationResponse)
|
|
19
|
+
if !self.hasReturnCodeError() {
|
|
20
|
+
if let params = self.parameters {
|
|
21
|
+
self.responseData = ConverterService.deserializeObject(gnHashtable: params, cls: CharacterPlayerModels.EmptyResponseData.self)
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
public class GetAvatarOperationResponse: CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
|
|
28
|
+
public override func setupOperationResponse(operationResponse: OperationResponse) {
|
|
29
|
+
super.setupOperationResponse(operationResponse: operationResponse)
|
|
30
|
+
if !self.hasReturnCodeError() {
|
|
31
|
+
if let params = self.parameters {
|
|
32
|
+
self.responseData = ConverterService.deserializeObject(gnHashtable: params, cls: CharacterPlayerModels.CharacterPlayerResponseData.self)
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
public class GetCatalogIdOperationResponse: CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
|
|
39
|
+
public override func setupOperationResponse(operationResponse: OperationResponse) {
|
|
40
|
+
super.setupOperationResponse(operationResponse: operationResponse)
|
|
41
|
+
if !self.hasReturnCodeError() {
|
|
42
|
+
if let params = self.parameters {
|
|
43
|
+
self.responseData = ConverterService.deserializeObject(gnHashtable: params, cls: CharacterPlayerModels.CharacterPlayerResponseData.self)
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
public class GetCountryCodeOperationResponse: CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
|
|
50
|
+
public override func setupOperationResponse(operationResponse: OperationResponse) {
|
|
51
|
+
super.setupOperationResponse(operationResponse: operationResponse)
|
|
52
|
+
if !self.hasReturnCodeError() {
|
|
53
|
+
if let params = self.parameters {
|
|
54
|
+
self.responseData = ConverterService.deserializeObject(gnHashtable: params, cls: CharacterPlayerModels.CharacterPlayerResponseData.self)
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
public class GetCustomDataOperationResponse: CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
|
|
61
|
+
public override func setupOperationResponse(operationResponse: OperationResponse) {
|
|
62
|
+
super.setupOperationResponse(operationResponse: operationResponse)
|
|
63
|
+
if !self.hasReturnCodeError() {
|
|
64
|
+
if let params = self.parameters {
|
|
65
|
+
self.responseData = ConverterService.deserializeObject(gnHashtable: params, cls: CharacterPlayerModels.CharacterPlayerResponseData.self)
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
public class GetDisplayNameOperationResponse: CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
|
|
72
|
+
public override func setupOperationResponse(operationResponse: OperationResponse) {
|
|
73
|
+
super.setupOperationResponse(operationResponse: operationResponse)
|
|
74
|
+
if !self.hasReturnCodeError() {
|
|
75
|
+
if let params = self.parameters {
|
|
76
|
+
self.responseData = ConverterService.deserializeObject(gnHashtable: params, cls: CharacterPlayerModels.CharacterPlayerResponseData.self)
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
public class GetFriendStatisticsLeaderboardAroundPlayerOperationResponse: CustomOperationResponseAbstract<CharacterPlayerModels.GetStatisticsLeaderboardResponseData> {
|
|
83
|
+
public override func setupOperationResponse(operationResponse: OperationResponse) {
|
|
84
|
+
super.setupOperationResponse(operationResponse: operationResponse)
|
|
85
|
+
if !self.hasReturnCodeError() {
|
|
86
|
+
if let params = self.parameters {
|
|
87
|
+
self.responseData = ConverterService.deserializeObject(gnHashtable: params, cls: CharacterPlayerModels.GetStatisticsLeaderboardResponseData.self)
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
public class GetFriendStatisticsLeaderboardOperationResponse: CustomOperationResponseAbstract<CharacterPlayerModels.GetStatisticsLeaderboardResponseData> {
|
|
94
|
+
public override func setupOperationResponse(operationResponse: OperationResponse) {
|
|
95
|
+
super.setupOperationResponse(operationResponse: operationResponse)
|
|
96
|
+
if !self.hasReturnCodeError() {
|
|
97
|
+
if let params = self.parameters {
|
|
98
|
+
self.responseData = ConverterService.deserializeObject(gnHashtable: params, cls: CharacterPlayerModels.GetStatisticsLeaderboardResponseData.self)
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
public class GetIpAddressCreateOperationResponse: CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
|
|
105
|
+
public override func setupOperationResponse(operationResponse: OperationResponse) {
|
|
106
|
+
super.setupOperationResponse(operationResponse: operationResponse)
|
|
107
|
+
if !self.hasReturnCodeError() {
|
|
108
|
+
if let params = self.parameters {
|
|
109
|
+
self.responseData = ConverterService.deserializeObject(gnHashtable: params, cls: CharacterPlayerModels.CharacterPlayerResponseData.self)
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
public class GetOwnerOperationResponse: CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
|
|
116
|
+
public override func setupOperationResponse(operationResponse: OperationResponse) {
|
|
117
|
+
super.setupOperationResponse(operationResponse: operationResponse)
|
|
118
|
+
if !self.hasReturnCodeError() {
|
|
119
|
+
if let params = self.parameters {
|
|
120
|
+
self.responseData = ConverterService.deserializeObject(gnHashtable: params, cls: CharacterPlayerModels.CharacterPlayerResponseData.self)
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
public class GetPlayerBanOperationResponse: CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
|
|
127
|
+
public override func setupOperationResponse(operationResponse: OperationResponse) {
|
|
128
|
+
super.setupOperationResponse(operationResponse: operationResponse)
|
|
129
|
+
if !self.hasReturnCodeError() {
|
|
130
|
+
if let params = self.parameters {
|
|
131
|
+
self.responseData = ConverterService.deserializeObject(gnHashtable: params, cls: CharacterPlayerModels.CharacterPlayerResponseData.self)
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
public class GetPlayerCurrencyOperationResponse: CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
|
|
138
|
+
public override func setupOperationResponse(operationResponse: OperationResponse) {
|
|
139
|
+
super.setupOperationResponse(operationResponse: operationResponse)
|
|
140
|
+
if !self.hasReturnCodeError() {
|
|
141
|
+
if let params = self.parameters {
|
|
142
|
+
self.responseData = ConverterService.deserializeObject(gnHashtable: params, cls: CharacterPlayerModels.CharacterPlayerResponseData.self)
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
public class GetPlayerDataOperationResponse: CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
|
|
149
|
+
public override func setupOperationResponse(operationResponse: OperationResponse) {
|
|
150
|
+
super.setupOperationResponse(operationResponse: operationResponse)
|
|
151
|
+
if !self.hasReturnCodeError() {
|
|
152
|
+
if let params = self.parameters {
|
|
153
|
+
self.responseData = ConverterService.deserializeObject(gnHashtable: params, cls: CharacterPlayerModels.CharacterPlayerResponseData.self)
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
public class GetPlayerFriendOperationResponse: CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
|
|
160
|
+
public override func setupOperationResponse(operationResponse: OperationResponse) {
|
|
161
|
+
super.setupOperationResponse(operationResponse: operationResponse)
|
|
162
|
+
if !self.hasReturnCodeError() {
|
|
163
|
+
if let params = self.parameters {
|
|
164
|
+
self.responseData = ConverterService.deserializeObject(gnHashtable: params, cls: CharacterPlayerModels.CharacterPlayerResponseData.self)
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
public class GetPlayerGroupOperationResponse: CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
|
|
171
|
+
public override func setupOperationResponse(operationResponse: OperationResponse) {
|
|
172
|
+
super.setupOperationResponse(operationResponse: operationResponse)
|
|
173
|
+
if !self.hasReturnCodeError() {
|
|
174
|
+
if let params = self.parameters {
|
|
175
|
+
self.responseData = ConverterService.deserializeObject(gnHashtable: params, cls: CharacterPlayerModels.CharacterPlayerResponseData.self)
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
public class GetPlayerInformationOperationResponse: CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
|
|
182
|
+
public override func setupOperationResponse(operationResponse: OperationResponse) {
|
|
183
|
+
super.setupOperationResponse(operationResponse: operationResponse)
|
|
184
|
+
if !self.hasReturnCodeError() {
|
|
185
|
+
if let params = self.parameters {
|
|
186
|
+
self.responseData = ConverterService.deserializeObject(gnHashtable: params, cls: CharacterPlayerModels.CharacterPlayerResponseData.self)
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
public class GetPlayerInventoryOperationResponse: CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
|
|
193
|
+
public override func setupOperationResponse(operationResponse: OperationResponse) {
|
|
194
|
+
super.setupOperationResponse(operationResponse: operationResponse)
|
|
195
|
+
if !self.hasReturnCodeError() {
|
|
196
|
+
if let params = self.parameters {
|
|
197
|
+
self.responseData = ConverterService.deserializeObject(gnHashtable: params, cls: CharacterPlayerModels.CharacterPlayerResponseData.self)
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
public class GetPlayerStatisticsOperationResponse: CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
|
|
204
|
+
public override func setupOperationResponse(operationResponse: OperationResponse) {
|
|
205
|
+
super.setupOperationResponse(operationResponse: operationResponse)
|
|
206
|
+
if !self.hasReturnCodeError() {
|
|
207
|
+
if let params = self.parameters {
|
|
208
|
+
self.responseData = ConverterService.deserializeObject(gnHashtable: params, cls: CharacterPlayerModels.CharacterPlayerResponseData.self)
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
public class GetPlayersWithDisplayNameOperationResponse: CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayersWithCharacterIdResponseData> {
|
|
215
|
+
public override func setupOperationResponse(operationResponse: OperationResponse) {
|
|
216
|
+
super.setupOperationResponse(operationResponse: operationResponse)
|
|
217
|
+
if !self.hasReturnCodeError() {
|
|
218
|
+
if let params = self.parameters {
|
|
219
|
+
self.responseData = ConverterService.deserializeObject(gnHashtable: params, cls: CharacterPlayerModels.CharacterPlayersWithCharacterIdResponseData.self)
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
public class GetPlayersWithSegmentOperationResponse: CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayersWithCharacterIdResponseData> {
|
|
226
|
+
public override func setupOperationResponse(operationResponse: OperationResponse) {
|
|
227
|
+
super.setupOperationResponse(operationResponse: operationResponse)
|
|
228
|
+
if !self.hasReturnCodeError() {
|
|
229
|
+
if let params = self.parameters {
|
|
230
|
+
self.responseData = ConverterService.deserializeObject(gnHashtable: params, cls: CharacterPlayerModels.CharacterPlayersWithCharacterIdResponseData.self)
|
|
231
|
+
}
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
public class GetPlayersWithTagOperationResponse: CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayersWithCharacterIdResponseData> {
|
|
237
|
+
public override func setupOperationResponse(operationResponse: OperationResponse) {
|
|
238
|
+
super.setupOperationResponse(operationResponse: operationResponse)
|
|
239
|
+
if !self.hasReturnCodeError() {
|
|
240
|
+
if let params = self.parameters {
|
|
241
|
+
self.responseData = ConverterService.deserializeObject(gnHashtable: params, cls: CharacterPlayerModels.CharacterPlayersWithCharacterIdResponseData.self)
|
|
242
|
+
}
|
|
243
|
+
}
|
|
244
|
+
}
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
public class GetRemoveStatusOperationResponse: CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
|
|
248
|
+
public override func setupOperationResponse(operationResponse: OperationResponse) {
|
|
249
|
+
super.setupOperationResponse(operationResponse: operationResponse)
|
|
250
|
+
if !self.hasReturnCodeError() {
|
|
251
|
+
if let params = self.parameters {
|
|
252
|
+
self.responseData = ConverterService.deserializeObject(gnHashtable: params, cls: CharacterPlayerModels.CharacterPlayerResponseData.self)
|
|
253
|
+
}
|
|
254
|
+
}
|
|
255
|
+
}
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
public class GetSegmentOperationResponse: CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
|
|
259
|
+
public override func setupOperationResponse(operationResponse: OperationResponse) {
|
|
260
|
+
super.setupOperationResponse(operationResponse: operationResponse)
|
|
261
|
+
if !self.hasReturnCodeError() {
|
|
262
|
+
if let params = self.parameters {
|
|
263
|
+
self.responseData = ConverterService.deserializeObject(gnHashtable: params, cls: CharacterPlayerModels.CharacterPlayerResponseData.self)
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
}
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
public class GetStatisticsLeaderboardAroundPlayerOperationResponse: CustomOperationResponseAbstract<CharacterPlayerModels.GetStatisticsLeaderboardResponseData> {
|
|
270
|
+
public override func setupOperationResponse(operationResponse: OperationResponse) {
|
|
271
|
+
super.setupOperationResponse(operationResponse: operationResponse)
|
|
272
|
+
if !self.hasReturnCodeError() {
|
|
273
|
+
if let params = self.parameters {
|
|
274
|
+
self.responseData = ConverterService.deserializeObject(gnHashtable: params, cls: CharacterPlayerModels.GetStatisticsLeaderboardResponseData.self)
|
|
275
|
+
}
|
|
276
|
+
}
|
|
277
|
+
}
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
public class GetStatisticsLeaderboardOperationResponse: CustomOperationResponseAbstract<CharacterPlayerModels.GetStatisticsLeaderboardResponseData> {
|
|
281
|
+
public override func setupOperationResponse(operationResponse: OperationResponse) {
|
|
282
|
+
super.setupOperationResponse(operationResponse: operationResponse)
|
|
283
|
+
if !self.hasReturnCodeError() {
|
|
284
|
+
if let params = self.parameters {
|
|
285
|
+
self.responseData = ConverterService.deserializeObject(gnHashtable: params, cls: CharacterPlayerModels.GetStatisticsLeaderboardResponseData.self)
|
|
286
|
+
}
|
|
287
|
+
}
|
|
288
|
+
}
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
public class GetTagOperationResponse: CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
|
|
292
|
+
public override func setupOperationResponse(operationResponse: OperationResponse) {
|
|
293
|
+
super.setupOperationResponse(operationResponse: operationResponse)
|
|
294
|
+
if !self.hasReturnCodeError() {
|
|
295
|
+
if let params = self.parameters {
|
|
296
|
+
self.responseData = ConverterService.deserializeObject(gnHashtable: params, cls: CharacterPlayerModels.CharacterPlayerResponseData.self)
|
|
297
|
+
}
|
|
298
|
+
}
|
|
299
|
+
}
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
public class GetTsCreateOperationResponse: CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
|
|
303
|
+
public override func setupOperationResponse(operationResponse: OperationResponse) {
|
|
304
|
+
super.setupOperationResponse(operationResponse: operationResponse)
|
|
305
|
+
if !self.hasReturnCodeError() {
|
|
306
|
+
if let params = self.parameters {
|
|
307
|
+
self.responseData = ConverterService.deserializeObject(gnHashtable: params, cls: CharacterPlayerModels.CharacterPlayerResponseData.self)
|
|
308
|
+
}
|
|
309
|
+
}
|
|
310
|
+
}
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
public class GetTsLastLoginOperationResponse: CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
|
|
314
|
+
public override func setupOperationResponse(operationResponse: OperationResponse) {
|
|
315
|
+
super.setupOperationResponse(operationResponse: operationResponse)
|
|
316
|
+
if !self.hasReturnCodeError() {
|
|
317
|
+
if let params = self.parameters {
|
|
318
|
+
self.responseData = ConverterService.deserializeObject(gnHashtable: params, cls: CharacterPlayerModels.CharacterPlayerResponseData.self)
|
|
319
|
+
}
|
|
320
|
+
}
|
|
321
|
+
}
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
public class CreateGroupOperationResponse: CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
|
|
325
|
+
public override func setupOperationResponse(operationResponse: OperationResponse) {
|
|
326
|
+
super.setupOperationResponse(operationResponse: operationResponse)
|
|
327
|
+
if !self.hasReturnCodeError() {
|
|
328
|
+
if let params = self.parameters {
|
|
329
|
+
self.responseData = ConverterService.deserializeObject(gnHashtable: params, cls: CharacterPlayerModels.CharacterPlayerResponseData.self)
|
|
330
|
+
}
|
|
331
|
+
}
|
|
332
|
+
}
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
public class CreatePlayerItemOperationResponse: CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
|
|
336
|
+
public override func setupOperationResponse(operationResponse: OperationResponse) {
|
|
337
|
+
super.setupOperationResponse(operationResponse: operationResponse)
|
|
338
|
+
if !self.hasReturnCodeError() {
|
|
339
|
+
if let params = self.parameters {
|
|
340
|
+
self.responseData = ConverterService.deserializeObject(gnHashtable: params, cls: CharacterPlayerModels.CharacterPlayerResponseData.self)
|
|
341
|
+
}
|
|
342
|
+
}
|
|
343
|
+
}
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
public class JoinGroupOperationResponse: CustomOperationResponseAbstract<CharacterPlayerModels.EmptyResponseData> {
|
|
347
|
+
public override func setupOperationResponse(operationResponse: OperationResponse) {
|
|
348
|
+
super.setupOperationResponse(operationResponse: operationResponse)
|
|
349
|
+
if !self.hasReturnCodeError() {
|
|
350
|
+
if let params = self.parameters {
|
|
351
|
+
self.responseData = ConverterService.deserializeObject(gnHashtable: params, cls: CharacterPlayerModels.EmptyResponseData.self)
|
|
352
|
+
}
|
|
353
|
+
}
|
|
354
|
+
}
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
public class LeaveGroupOperationResponse: CustomOperationResponseAbstract<CharacterPlayerModels.EmptyResponseData> {
|
|
358
|
+
public override func setupOperationResponse(operationResponse: OperationResponse) {
|
|
359
|
+
super.setupOperationResponse(operationResponse: operationResponse)
|
|
360
|
+
if !self.hasReturnCodeError() {
|
|
361
|
+
if let params = self.parameters {
|
|
362
|
+
self.responseData = ConverterService.deserializeObject(gnHashtable: params, cls: CharacterPlayerModels.EmptyResponseData.self)
|
|
363
|
+
}
|
|
364
|
+
}
|
|
365
|
+
}
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
public class RemovePlayerFriendOperationResponse: CustomOperationResponseAbstract<CharacterPlayerModels.EmptyResponseData> {
|
|
369
|
+
public override func setupOperationResponse(operationResponse: OperationResponse) {
|
|
370
|
+
super.setupOperationResponse(operationResponse: operationResponse)
|
|
371
|
+
if !self.hasReturnCodeError() {
|
|
372
|
+
if let params = self.parameters {
|
|
373
|
+
self.responseData = ConverterService.deserializeObject(gnHashtable: params, cls: CharacterPlayerModels.EmptyResponseData.self)
|
|
374
|
+
}
|
|
375
|
+
}
|
|
376
|
+
}
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
public class RemovePlayerItemOperationResponse: CustomOperationResponseAbstract<CharacterPlayerModels.EmptyResponseData> {
|
|
380
|
+
public override func setupOperationResponse(operationResponse: OperationResponse) {
|
|
381
|
+
super.setupOperationResponse(operationResponse: operationResponse)
|
|
382
|
+
if !self.hasReturnCodeError() {
|
|
383
|
+
if let params = self.parameters {
|
|
384
|
+
self.responseData = ConverterService.deserializeObject(gnHashtable: params, cls: CharacterPlayerModels.EmptyResponseData.self)
|
|
385
|
+
}
|
|
386
|
+
}
|
|
387
|
+
}
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
public class RemoveSegmentOperationResponse: CustomOperationResponseAbstract<CharacterPlayerModels.EmptyResponseData> {
|
|
391
|
+
public override func setupOperationResponse(operationResponse: OperationResponse) {
|
|
392
|
+
super.setupOperationResponse(operationResponse: operationResponse)
|
|
393
|
+
if !self.hasReturnCodeError() {
|
|
394
|
+
if let params = self.parameters {
|
|
395
|
+
self.responseData = ConverterService.deserializeObject(gnHashtable: params, cls: CharacterPlayerModels.EmptyResponseData.self)
|
|
396
|
+
}
|
|
397
|
+
}
|
|
398
|
+
}
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
public class RemoveTagOperationResponse: CustomOperationResponseAbstract<CharacterPlayerModels.EmptyResponseData> {
|
|
402
|
+
public override func setupOperationResponse(operationResponse: OperationResponse) {
|
|
403
|
+
super.setupOperationResponse(operationResponse: operationResponse)
|
|
404
|
+
if !self.hasReturnCodeError() {
|
|
405
|
+
if let params = self.parameters {
|
|
406
|
+
self.responseData = ConverterService.deserializeObject(gnHashtable: params, cls: CharacterPlayerModels.EmptyResponseData.self)
|
|
407
|
+
}
|
|
408
|
+
}
|
|
409
|
+
}
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
public class SetAvatarOperationResponse: CustomOperationResponseAbstract<CharacterPlayerModels.EmptyResponseData> {
|
|
413
|
+
public override func setupOperationResponse(operationResponse: OperationResponse) {
|
|
414
|
+
super.setupOperationResponse(operationResponse: operationResponse)
|
|
415
|
+
if !self.hasReturnCodeError() {
|
|
416
|
+
if let params = self.parameters {
|
|
417
|
+
self.responseData = ConverterService.deserializeObject(gnHashtable: params, cls: CharacterPlayerModels.EmptyResponseData.self)
|
|
418
|
+
}
|
|
419
|
+
}
|
|
420
|
+
}
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
public class SetCountryCodeOperationResponse: CustomOperationResponseAbstract<CharacterPlayerModels.EmptyResponseData> {
|
|
424
|
+
public override func setupOperationResponse(operationResponse: OperationResponse) {
|
|
425
|
+
super.setupOperationResponse(operationResponse: operationResponse)
|
|
426
|
+
if !self.hasReturnCodeError() {
|
|
427
|
+
if let params = self.parameters {
|
|
428
|
+
self.responseData = ConverterService.deserializeObject(gnHashtable: params, cls: CharacterPlayerModels.EmptyResponseData.self)
|
|
429
|
+
}
|
|
430
|
+
}
|
|
431
|
+
}
|
|
432
|
+
}
|
|
433
|
+
|
|
434
|
+
public class SetCustomDataOperationResponse: CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
|
|
435
|
+
public override func setupOperationResponse(operationResponse: OperationResponse) {
|
|
436
|
+
super.setupOperationResponse(operationResponse: operationResponse)
|
|
437
|
+
if !self.hasReturnCodeError() {
|
|
438
|
+
if let params = self.parameters {
|
|
439
|
+
self.responseData = ConverterService.deserializeObject(gnHashtable: params, cls: CharacterPlayerModels.CharacterPlayerResponseData.self)
|
|
440
|
+
}
|
|
441
|
+
}
|
|
442
|
+
}
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
public class SetDisplayNameOperationResponse: CustomOperationResponseAbstract<CharacterPlayerModels.EmptyResponseData> {
|
|
446
|
+
public override func setupOperationResponse(operationResponse: OperationResponse) {
|
|
447
|
+
super.setupOperationResponse(operationResponse: operationResponse)
|
|
448
|
+
if !self.hasReturnCodeError() {
|
|
449
|
+
if let params = self.parameters {
|
|
450
|
+
self.responseData = ConverterService.deserializeObject(gnHashtable: params, cls: CharacterPlayerModels.EmptyResponseData.self)
|
|
451
|
+
}
|
|
452
|
+
}
|
|
453
|
+
}
|
|
454
|
+
}
|
|
455
|
+
|
|
456
|
+
public class SetOwnerOperationResponse: CustomOperationResponseAbstract<CharacterPlayerModels.EmptyResponseData> {
|
|
457
|
+
public override func setupOperationResponse(operationResponse: OperationResponse) {
|
|
458
|
+
super.setupOperationResponse(operationResponse: operationResponse)
|
|
459
|
+
if !self.hasReturnCodeError() {
|
|
460
|
+
if let params = self.parameters {
|
|
461
|
+
self.responseData = ConverterService.deserializeObject(gnHashtable: params, cls: CharacterPlayerModels.EmptyResponseData.self)
|
|
462
|
+
}
|
|
463
|
+
}
|
|
464
|
+
}
|
|
465
|
+
}
|
|
466
|
+
|
|
467
|
+
public class SetPlayerBanOperationResponse: CustomOperationResponseAbstract<CharacterPlayerModels.EmptyResponseData> {
|
|
468
|
+
public override func setupOperationResponse(operationResponse: OperationResponse) {
|
|
469
|
+
super.setupOperationResponse(operationResponse: operationResponse)
|
|
470
|
+
if !self.hasReturnCodeError() {
|
|
471
|
+
if let params = self.parameters {
|
|
472
|
+
self.responseData = ConverterService.deserializeObject(gnHashtable: params, cls: CharacterPlayerModels.EmptyResponseData.self)
|
|
473
|
+
}
|
|
474
|
+
}
|
|
475
|
+
}
|
|
476
|
+
}
|
|
477
|
+
|
|
478
|
+
public class ChangePlayerCurrencyOperationResponse: CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
|
|
479
|
+
public override func setupOperationResponse(operationResponse: OperationResponse) {
|
|
480
|
+
super.setupOperationResponse(operationResponse: operationResponse)
|
|
481
|
+
if !self.hasReturnCodeError() {
|
|
482
|
+
if let params = self.parameters {
|
|
483
|
+
self.responseData = ConverterService.deserializeObject(gnHashtable: params, cls: CharacterPlayerModels.CharacterPlayerResponseData.self)
|
|
484
|
+
}
|
|
485
|
+
}
|
|
486
|
+
}
|
|
487
|
+
}
|
|
488
|
+
|
|
489
|
+
public class SetPlayerDataOperationResponse: CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
|
|
490
|
+
public override func setupOperationResponse(operationResponse: OperationResponse) {
|
|
491
|
+
super.setupOperationResponse(operationResponse: operationResponse)
|
|
492
|
+
if !self.hasReturnCodeError() {
|
|
493
|
+
if let params = self.parameters {
|
|
494
|
+
self.responseData = ConverterService.deserializeObject(gnHashtable: params, cls: CharacterPlayerModels.CharacterPlayerResponseData.self)
|
|
495
|
+
}
|
|
496
|
+
}
|
|
497
|
+
}
|
|
498
|
+
}
|
|
499
|
+
|
|
500
|
+
public class ChangePlayerStatisticsOperationResponse: CustomOperationResponseAbstract<CharacterPlayerModels.CharacterPlayerResponseData> {
|
|
501
|
+
public override func setupOperationResponse(operationResponse: OperationResponse) {
|
|
502
|
+
super.setupOperationResponse(operationResponse: operationResponse)
|
|
503
|
+
if !self.hasReturnCodeError() {
|
|
504
|
+
if let params = self.parameters {
|
|
505
|
+
self.responseData = ConverterService.deserializeObject(gnHashtable: params, cls: CharacterPlayerModels.CharacterPlayerResponseData.self)
|
|
506
|
+
}
|
|
507
|
+
}
|
|
508
|
+
}
|
|
509
|
+
}
|
|
510
|
+
|
|
511
|
+
public class SetRemoveStatusOperationResponse: CustomOperationResponseAbstract<CharacterPlayerModels.EmptyResponseData> {
|
|
512
|
+
public override func setupOperationResponse(operationResponse: OperationResponse) {
|
|
513
|
+
super.setupOperationResponse(operationResponse: operationResponse)
|
|
514
|
+
if !self.hasReturnCodeError() {
|
|
515
|
+
if let params = self.parameters {
|
|
516
|
+
self.responseData = ConverterService.deserializeObject(gnHashtable: params, cls: CharacterPlayerModels.EmptyResponseData.self)
|
|
517
|
+
}
|
|
518
|
+
}
|
|
519
|
+
}
|
|
520
|
+
}
|
|
521
|
+
|
|
522
|
+
public class SetTagOperationResponse: CustomOperationResponseAbstract<CharacterPlayerModels.EmptyResponseData> {
|
|
523
|
+
public override func setupOperationResponse(operationResponse: OperationResponse) {
|
|
524
|
+
super.setupOperationResponse(operationResponse: operationResponse)
|
|
525
|
+
if !self.hasReturnCodeError() {
|
|
526
|
+
if let params = self.parameters {
|
|
527
|
+
self.responseData = ConverterService.deserializeObject(gnHashtable: params, cls: CharacterPlayerModels.EmptyResponseData.self)
|
|
528
|
+
}
|
|
529
|
+
}
|
|
530
|
+
}
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
public class GetCurrencyLeaderboardOperationResponse: CustomOperationResponseAbstract<CharacterPlayerModels.GetCurrencyLeaderboardResponseData> {
|
|
534
|
+
public override func setupOperationResponse(operationResponse: OperationResponse) {
|
|
535
|
+
super.setupOperationResponse(operationResponse: operationResponse)
|
|
536
|
+
if !self.hasReturnCodeError() {
|
|
537
|
+
if let params = self.parameters {
|
|
538
|
+
self.responseData = ConverterService.deserializeObject(gnHashtable: params, cls: CharacterPlayerModels.GetCurrencyLeaderboardResponseData.self)
|
|
539
|
+
}
|
|
540
|
+
}
|
|
541
|
+
}
|
|
542
|
+
}
|
|
543
|
+
|
|
544
|
+
public class GetCreateLeaderboardOperationResponse: CustomOperationResponseAbstract<CharacterPlayerModels.GetCreateLeaderboardResponseData> {
|
|
545
|
+
public override func setupOperationResponse(operationResponse: OperationResponse) {
|
|
546
|
+
super.setupOperationResponse(operationResponse: operationResponse)
|
|
547
|
+
if !self.hasReturnCodeError() {
|
|
548
|
+
if let params = self.parameters {
|
|
549
|
+
self.responseData = ConverterService.deserializeObject(gnHashtable: params, cls: CharacterPlayerModels.GetCreateLeaderboardResponseData.self)
|
|
550
|
+
}
|
|
551
|
+
}
|
|
552
|
+
}
|
|
553
|
+
}
|
|
554
|
+
|
|
555
|
+
public class GetLastLoginLeaderboardOperationResponse: CustomOperationResponseAbstract<CharacterPlayerModels.GetLastLoginLeaderboardResponseData> {
|
|
556
|
+
public override func setupOperationResponse(operationResponse: OperationResponse) {
|
|
557
|
+
super.setupOperationResponse(operationResponse: operationResponse)
|
|
558
|
+
if !self.hasReturnCodeError() {
|
|
559
|
+
if let params = self.parameters {
|
|
560
|
+
self.responseData = ConverterService.deserializeObject(gnHashtable: params, cls: CharacterPlayerModels.GetLastLoginLeaderboardResponseData.self)
|
|
561
|
+
}
|
|
562
|
+
}
|
|
563
|
+
}
|
|
564
|
+
}
|
|
565
|
+
|
|
566
|
+
public class GetStatisticsLogOperationResponse: CustomOperationResponseAbstract<CharacterPlayerModels.GetStatisticsLogResponseData> {
|
|
567
|
+
public override func setupOperationResponse(operationResponse: OperationResponse) {
|
|
568
|
+
super.setupOperationResponse(operationResponse: operationResponse)
|
|
569
|
+
if !self.hasReturnCodeError() {
|
|
570
|
+
if let params = self.parameters {
|
|
571
|
+
self.responseData = ConverterService.deserializeObject(gnHashtable: params, cls: CharacterPlayerModels.GetStatisticsLogResponseData.self)
|
|
572
|
+
}
|
|
573
|
+
}
|
|
574
|
+
}
|
|
575
|
+
}
|
|
576
|
+
|
|
577
|
+
public class GetCurrencyLogOperationResponse: CustomOperationResponseAbstract<CharacterPlayerModels.GetCurrencyLogResponseData> {
|
|
578
|
+
public override func setupOperationResponse(operationResponse: OperationResponse) {
|
|
579
|
+
super.setupOperationResponse(operationResponse: operationResponse)
|
|
580
|
+
if !self.hasReturnCodeError() {
|
|
581
|
+
if let params = self.parameters {
|
|
582
|
+
self.responseData = ConverterService.deserializeObject(gnHashtable: params, cls: CharacterPlayerModels.GetCurrencyLogResponseData.self)
|
|
583
|
+
}
|
|
584
|
+
}
|
|
585
|
+
}
|
|
586
|
+
}
|
|
587
|
+
}
|
|
588
|
+
}
|