@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,81 @@
|
|
|
1
|
+
import Foundation
|
|
2
|
+
|
|
3
|
+
public struct ContentResponseModels {
|
|
4
|
+
|
|
5
|
+
public class CreateNewFileUploadInfoOperationResponse: CustomOperationResponseAbstract<ContentModels.FileIdUploadResponseData> {
|
|
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: ContentModels.FileIdUploadResponseData.self)
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
public class GetContentDataOperationResponse: CustomOperationResponseAbstract<ContentModels.GetContentDataResponseData> {
|
|
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: ContentModels.GetContentDataResponseData.self)
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
public class GetFileUploadInfoListOperationResponse: CustomOperationResponseAbstract<ContentModels.GetFileUploadInfoListResponseData> {
|
|
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: ContentModels.GetFileUploadInfoListResponseData.self)
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
public class GetFileUploadInfoOperationResponse: CustomOperationResponseAbstract<ContentModels.GetFileUploadInfoResponseData> {
|
|
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: ContentModels.GetFileUploadInfoResponseData.self)
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
public class RemoveFileUploadInfoOperationResponse: CustomOperationResponseAbstract<ContentModels.EmptyResponseData> {
|
|
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: ContentModels.EmptyResponseData.self)
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
public class RequestDownloadFileUploadInfoOperationResponse: CustomOperationResponseAbstract<ContentModels.RequestDownloadFileUploadInfoResponseData> {
|
|
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: ContentModels.RequestDownloadFileUploadInfoResponseData.self)
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
public class SetContentDataOperationResponse: CustomOperationResponseAbstract<ContentModels.EmptyResponseData> {
|
|
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: ContentModels.EmptyResponseData.self)
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
}
|
|
@@ -0,0 +1,426 @@
|
|
|
1
|
+
import Foundation
|
|
2
|
+
|
|
3
|
+
/// Dashboard Models - Data structures for Dashboard API operations
|
|
4
|
+
public enum DashboardModels {
|
|
5
|
+
|
|
6
|
+
// MARK: - Parameter Classes
|
|
7
|
+
|
|
8
|
+
public class PermissionRulesParam: Initiable {
|
|
9
|
+
@BooleanDataMember(code: ParameterCode.SelfEnable) public var selfEnable: Bool?
|
|
10
|
+
@BooleanDataMember(code: ParameterCode.OtherSelfEnable) public var otherSelfEnable: Bool?
|
|
11
|
+
@BooleanDataMember(code: ParameterCode.AdminSelfEnable) public var adminSelfEnable: Bool?
|
|
12
|
+
@BooleanDataMember(code: ParameterCode.ServerSelfEnable) public var serverSelfEnable: Bool?
|
|
13
|
+
public required init() {}
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
public class FriendCatalogSettingsParam: Initiable {
|
|
17
|
+
@StringDataMember(code: ParameterCode.CatalogId) public var catalogId: String?
|
|
18
|
+
@StringDataMember(code: ParameterCode.Description) public var description: String?
|
|
19
|
+
@BooleanDataMember(code: ParameterCode.ForceAcceptFriend) public var forceAcceptFriend: Bool?
|
|
20
|
+
public required init() {}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
public class ItemClassSettingsParam: Initiable {
|
|
24
|
+
@StringDataMember(code: ParameterCode.ClassId) public var classId: String?
|
|
25
|
+
@StringDataMember(code: ParameterCode.Description) public var description: String?
|
|
26
|
+
public required init() {}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
public class ItemCatalogSettingsParam: Initiable {
|
|
30
|
+
@StringDataMember(code: ParameterCode.CatalogId) public var catalogId: String?
|
|
31
|
+
@NumberDataMember(code: ParameterCode.ItemType) public var itemType: NSNumber?
|
|
32
|
+
@GNArrayDataMember(code: ParameterCode.ItemClassSettings, elementCls: ItemClassSettingsParam.self) public var itemClassSettings: GNArray?
|
|
33
|
+
public required init() {}
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
public class GroupCatalogSettingsParam: Initiable {
|
|
37
|
+
@StringDataMember(code: ParameterCode.CatalogId) public var catalogId: String?
|
|
38
|
+
@StringDataMember(code: ParameterCode.Description) public var description: String?
|
|
39
|
+
@BooleanDataMember(code: ParameterCode.ForceAcceptMember) public var forceAcceptMember: Bool?
|
|
40
|
+
public required init() {}
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
public class TagSettingsParam: Initiable {
|
|
44
|
+
@StringDataMember(code: ParameterCode.Key) public var key: String?
|
|
45
|
+
@StringDataMember(code: ParameterCode.Description) public var description: String?
|
|
46
|
+
@BooleanDataMember(code: ParameterCode.Index) public var index: Bool?
|
|
47
|
+
public required init() {}
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
public class DataSettingsParam: Initiable {
|
|
51
|
+
@StringDataMember(code: ParameterCode.Key) public var key: String?
|
|
52
|
+
@StringDataMember(code: ParameterCode.Description) public var description: String?
|
|
53
|
+
@NumberDataMember(code: ParameterCode.Permission) public var permission: NSNumber?
|
|
54
|
+
public required init() {}
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
public class StatisticsSettingsParam: Initiable {
|
|
58
|
+
@StringDataMember(code: ParameterCode.Key) public var key: String?
|
|
59
|
+
@NumberDataMember(code: ParameterCode.StatisticsAggregationMethod) public var statisticsAggregationMethod: NSNumber?
|
|
60
|
+
@NumberDataMember(code: ParameterCode.MaximumValue) public var maximumValue: NSNumber?
|
|
61
|
+
@NumberDataMember(code: ParameterCode.MinimumValue) public var minimumValue: NSNumber?
|
|
62
|
+
@NumberDataMember(code: ParameterCode.InitialValue) public var initialValue: NSNumber?
|
|
63
|
+
@StringDataMember(code: ParameterCode.Description) public var description: String?
|
|
64
|
+
@BooleanDataMember(code: ParameterCode.Index) public var index: Bool?
|
|
65
|
+
public required init() {}
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
public class CurrencySettingsParam: Initiable {
|
|
69
|
+
@StringDataMember(code: ParameterCode.Key) public var key: String?
|
|
70
|
+
@NumberDataMember(code: ParameterCode.InitialValue) public var initialValue: NSNumber?
|
|
71
|
+
@StringDataMember(code: ParameterCode.Description) public var description: String?
|
|
72
|
+
@BooleanDataMember(code: ParameterCode.Index) public var index: Bool?
|
|
73
|
+
public required init() {}
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
public class CharacterCatalogSettingsParam: Initiable {
|
|
77
|
+
@StringDataMember(code: ParameterCode.CatalogId) public var catalogId: String?
|
|
78
|
+
@StringDataMember(code: ParameterCode.Description) public var description: String?
|
|
79
|
+
public required init() {}
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
public class CharacterPlayerPermissionRulesParam: Initiable {
|
|
83
|
+
@GNHashtableDataMember(code: ParameterCode.AddSegment, elementCls: PermissionRulesParam.self) public var addSegment: GNHashtable?
|
|
84
|
+
@GNHashtableDataMember(code: ParameterCode.RemoveSegment, elementCls: PermissionRulesParam.self) public var removeSegment: GNHashtable?
|
|
85
|
+
@GNHashtableDataMember(code: ParameterCode.GetSegment, elementCls: PermissionRulesParam.self) public var getSegment: GNHashtable?
|
|
86
|
+
@GNHashtableDataMember(code: ParameterCode.SetTag, elementCls: PermissionRulesParam.self) public var setTag: GNHashtable?
|
|
87
|
+
@GNHashtableDataMember(code: ParameterCode.RemoveTag, elementCls: PermissionRulesParam.self) public var removeTag: GNHashtable?
|
|
88
|
+
@GNHashtableDataMember(code: ParameterCode.GetTag, elementCls: PermissionRulesParam.self) public var getTag: GNHashtable?
|
|
89
|
+
@GNHashtableDataMember(code: ParameterCode.GetDisplayName, elementCls: PermissionRulesParam.self) public var getDisplayName: GNHashtable?
|
|
90
|
+
@GNHashtableDataMember(code: ParameterCode.SetDisplayName, elementCls: PermissionRulesParam.self) public var setDisplayName: GNHashtable?
|
|
91
|
+
@GNHashtableDataMember(code: ParameterCode.GetTsCreate, elementCls: PermissionRulesParam.self) public var getTsCreate: GNHashtable?
|
|
92
|
+
@GNHashtableDataMember(code: ParameterCode.GetIpAddressCreate, elementCls: PermissionRulesParam.self) public var getIpAddressCreate: GNHashtable?
|
|
93
|
+
@GNHashtableDataMember(code: ParameterCode.GetTsLastLogin, elementCls: PermissionRulesParam.self) public var getTsLastLogin: GNHashtable?
|
|
94
|
+
@GNHashtableDataMember(code: ParameterCode.SetPlayerBan, elementCls: PermissionRulesParam.self) public var setPlayerBan: GNHashtable?
|
|
95
|
+
@GNHashtableDataMember(code: ParameterCode.GetPlayerBan, elementCls: PermissionRulesParam.self) public var getPlayerBan: GNHashtable?
|
|
96
|
+
@GNHashtableDataMember(code: ParameterCode.SetCountryCode, elementCls: PermissionRulesParam.self) public var setCountryCode: GNHashtable?
|
|
97
|
+
@GNHashtableDataMember(code: ParameterCode.GetCountryCode, elementCls: PermissionRulesParam.self) public var getCountryCode: GNHashtable?
|
|
98
|
+
@GNHashtableDataMember(code: ParameterCode.SetAvatar, elementCls: PermissionRulesParam.self) public var setAvatar: GNHashtable?
|
|
99
|
+
@GNHashtableDataMember(code: ParameterCode.GetAvatar, elementCls: PermissionRulesParam.self) public var getAvatar: GNHashtable?
|
|
100
|
+
@GNHashtableDataMember(code: ParameterCode.ChangePlayerCurrency, elementCls: PermissionRulesParam.self) public var changePlayerCurrency: GNHashtable?
|
|
101
|
+
@GNHashtableDataMember(code: ParameterCode.GetPlayerCurrency, elementCls: PermissionRulesParam.self) public var getPlayerCurrency: GNHashtable?
|
|
102
|
+
@GNHashtableDataMember(code: ParameterCode.ChangePlayerStatistics, elementCls: PermissionRulesParam.self) public var changePlayerStatistics: GNHashtable?
|
|
103
|
+
@GNHashtableDataMember(code: ParameterCode.GetPlayerStatistics, elementCls: PermissionRulesParam.self) public var getPlayerStatistics: GNHashtable?
|
|
104
|
+
@GNHashtableDataMember(code: ParameterCode.GetStatisticsLeaderboard, elementCls: PermissionRulesParam.self) public var getStatisticsLeaderboard: GNHashtable?
|
|
105
|
+
@GNHashtableDataMember(code: ParameterCode.GetStatisticsLeaderboardAroundPlayer, elementCls: PermissionRulesParam.self) public var getStatisticsLeaderboardAroundPlayer: GNHashtable?
|
|
106
|
+
@GNHashtableDataMember(code: ParameterCode.GetCustomData, elementCls: PermissionRulesParam.self) public var getCustomData: GNHashtable?
|
|
107
|
+
@GNHashtableDataMember(code: ParameterCode.SetCustomData, elementCls: PermissionRulesParam.self) public var setCustomData: GNHashtable?
|
|
108
|
+
@GNHashtableDataMember(code: ParameterCode.SetPlayerData, elementCls: PermissionRulesParam.self) public var setPlayerData: GNHashtable?
|
|
109
|
+
@GNHashtableDataMember(code: ParameterCode.GetPlayerData, elementCls: PermissionRulesParam.self) public var getPlayerData: GNHashtable?
|
|
110
|
+
@GNHashtableDataMember(code: ParameterCode.GetPlayerInformation, elementCls: PermissionRulesParam.self) public var getPlayerInformation: GNHashtable?
|
|
111
|
+
@GNHashtableDataMember(code: ParameterCode.GetPlayersWithSegment, elementCls: PermissionRulesParam.self) public var getPlayersWithSegment: GNHashtable?
|
|
112
|
+
@GNHashtableDataMember(code: ParameterCode.GetPlayersWithTag, elementCls: PermissionRulesParam.self) public var getPlayersWithTag: GNHashtable?
|
|
113
|
+
@GNHashtableDataMember(code: ParameterCode.GetCatalogId, elementCls: PermissionRulesParam.self) public var getCatalogId: GNHashtable?
|
|
114
|
+
@GNHashtableDataMember(code: ParameterCode.GetOwner, elementCls: PermissionRulesParam.self) public var getOwner: GNHashtable?
|
|
115
|
+
@GNHashtableDataMember(code: ParameterCode.GetRemoveStatus, elementCls: PermissionRulesParam.self) public var getRemoveStatus: GNHashtable?
|
|
116
|
+
@GNHashtableDataMember(code: ParameterCode.GetPlayerFriend, elementCls: PermissionRulesParam.self) public var getPlayerFriend: GNHashtable?
|
|
117
|
+
@GNHashtableDataMember(code: ParameterCode.GetPlayerGroup, elementCls: PermissionRulesParam.self) public var getPlayerGroup: GNHashtable?
|
|
118
|
+
@GNHashtableDataMember(code: ParameterCode.GetPlayerInventory, elementCls: PermissionRulesParam.self) public var getPlayerInventory: GNHashtable?
|
|
119
|
+
@GNHashtableDataMember(code: ParameterCode.RemovePlayerItem, elementCls: PermissionRulesParam.self) public var removePlayerItem: GNHashtable?
|
|
120
|
+
@GNHashtableDataMember(code: ParameterCode.CreatePlayerItem, elementCls: PermissionRulesParam.self) public var createPlayerItem: GNHashtable?
|
|
121
|
+
@GNHashtableDataMember(code: ParameterCode.CreateGroup, elementCls: PermissionRulesParam.self) public var createGroup: GNHashtable?
|
|
122
|
+
@GNHashtableDataMember(code: ParameterCode.JoinGroup, elementCls: PermissionRulesParam.self) public var joinGroup: GNHashtable?
|
|
123
|
+
@GNHashtableDataMember(code: ParameterCode.LeaveGroup, elementCls: PermissionRulesParam.self) public var leaveGroup: GNHashtable?
|
|
124
|
+
@GNHashtableDataMember(code: ParameterCode.SetOwner, elementCls: PermissionRulesParam.self) public var setOwner: GNHashtable?
|
|
125
|
+
@GNHashtableDataMember(code: ParameterCode.AddPlayerFriend, elementCls: PermissionRulesParam.self) public var addPlayerFriend: GNHashtable?
|
|
126
|
+
@GNHashtableDataMember(code: ParameterCode.RemovePlayerFriend, elementCls: PermissionRulesParam.self) public var removePlayerFriend: GNHashtable?
|
|
127
|
+
@GNHashtableDataMember(code: ParameterCode.GetPlayersWithDisplayName, elementCls: PermissionRulesParam.self) public var getPlayersWithDisplayName: GNHashtable?
|
|
128
|
+
@GNHashtableDataMember(code: ParameterCode.SetRemoveStatus, elementCls: PermissionRulesParam.self) public var setRemoveStatus: GNHashtable?
|
|
129
|
+
@GNHashtableDataMember(code: ParameterCode.GetFriendStatisticsLeaderboardAroundPlayer, elementCls: PermissionRulesParam.self) public var getFriendStatisticsLeaderboardAroundPlayer: GNHashtable?
|
|
130
|
+
@GNHashtableDataMember(code: ParameterCode.GetFriendStatisticsLeaderboard, elementCls: PermissionRulesParam.self) public var getFriendStatisticsLeaderboard: GNHashtable?
|
|
131
|
+
@GNHashtableDataMember(code: ParameterCode.GetCurrencyLeaderboard, elementCls: PermissionRulesParam.self) public var getCurrencyLeaderboard: GNHashtable?
|
|
132
|
+
@GNHashtableDataMember(code: ParameterCode.GetCreateLeaderboard, elementCls: PermissionRulesParam.self) public var getCreateLeaderboard: GNHashtable?
|
|
133
|
+
@GNHashtableDataMember(code: ParameterCode.GetLastLoginLeaderboard, elementCls: PermissionRulesParam.self) public var getLastLoginLeaderboard: GNHashtable?
|
|
134
|
+
@GNHashtableDataMember(code: ParameterCode.GetStatisticsLog, elementCls: PermissionRulesParam.self) public var getStatisticsLog: GNHashtable?
|
|
135
|
+
@GNHashtableDataMember(code: ParameterCode.GetCurrencyLog, elementCls: PermissionRulesParam.self) public var getCurrencyLog: GNHashtable?
|
|
136
|
+
public required init() {}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
public class CharacterPlayerSettingsParam: Initiable {
|
|
140
|
+
@GNArrayDataMember(code: ParameterCode.PlayerCurrenciesSettings, elementCls: CurrencySettingsParam.self) public var playerCurrenciesSettings: GNArray?
|
|
141
|
+
@GNArrayDataMember(code: ParameterCode.PlayerStatisticsSettings, elementCls: StatisticsSettingsParam.self) public var playerStatisticsSettings: GNArray?
|
|
142
|
+
@GNArrayDataMember(code: ParameterCode.PlayerDatasSettings, elementCls: DataSettingsParam.self) public var playerDatasSettings: GNArray?
|
|
143
|
+
@GNArrayDataMember(code: ParameterCode.CustomDatasSettings, elementCls: DataSettingsParam.self) public var customDatasSettings: GNArray?
|
|
144
|
+
@GNArrayDataMember(code: ParameterCode.TagsSettings, elementCls: TagSettingsParam.self) public var tagsSettings: GNArray?
|
|
145
|
+
@GNArrayDataMember(code: ParameterCode.PlayerGroupCatalogSettings, elementCls: GroupCatalogSettingsParam.self) public var playerGroupCatalogSettings: GNArray?
|
|
146
|
+
@GNArrayDataMember(code: ParameterCode.PlayerItemCatalogSettings, elementCls: ItemCatalogSettingsParam.self) public var playerItemCatalogSettings: GNArray?
|
|
147
|
+
@GNArrayDataMember(code: ParameterCode.PlayerFriendCatalogSettings, elementCls: FriendCatalogSettingsParam.self) public var playerFriendCatalogSettings: GNArray?
|
|
148
|
+
public required init() {}
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
public class ContentPermissionRulesParam: Initiable {
|
|
152
|
+
@GNHashtableDataMember(code: ParameterCode.GetContentData, elementCls: PermissionRulesParam.self) public var getContentData: GNHashtable?
|
|
153
|
+
@GNHashtableDataMember(code: ParameterCode.SetContentData, elementCls: PermissionRulesParam.self) public var setContentData: GNHashtable?
|
|
154
|
+
@GNHashtableDataMember(code: ParameterCode.CreateNewFileUploadInfo, elementCls: PermissionRulesParam.self) public var createNewFileUploadInfo: GNHashtable?
|
|
155
|
+
@GNHashtableDataMember(code: ParameterCode.GetFileUploadInfoList, elementCls: PermissionRulesParam.self) public var getFileUploadInfoList: GNHashtable?
|
|
156
|
+
@GNHashtableDataMember(code: ParameterCode.GetFileUploadInfo, elementCls: PermissionRulesParam.self) public var getFileUploadInfo: GNHashtable?
|
|
157
|
+
@GNHashtableDataMember(code: ParameterCode.RemoveFileUploadInfo, elementCls: PermissionRulesParam.self) public var removeFileUploadInfo: GNHashtable?
|
|
158
|
+
@GNHashtableDataMember(code: ParameterCode.RequestDownloadFileUploadInfo, elementCls: PermissionRulesParam.self) public var requestDownloadFileUploadInfo: GNHashtable?
|
|
159
|
+
public required init() {}
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
public class ThirtPartyAppleSettingsParam: Initiable {
|
|
163
|
+
@StringDataMember(code: ParameterCode.AppleClientId) public var appleClientId: String?
|
|
164
|
+
@BooleanDataMember(code: ParameterCode.SandboxEnable) public var sandboxEnable: Bool?
|
|
165
|
+
@StringDataMember(code: ParameterCode.IssuerId) public var issuerId: String?
|
|
166
|
+
@StringDataMember(code: ParameterCode.KeyId) public var keyId: String?
|
|
167
|
+
@StringDataMember(code: ParameterCode.P8Content) public var p8Content: String?
|
|
168
|
+
public required init() {}
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
public class ThirtPartyFacebookSettingsParam: Initiable {
|
|
172
|
+
@StringDataMember(code: ParameterCode.FacebookAppId) public var facebookAppId: String?
|
|
173
|
+
@StringDataMember(code: ParameterCode.FacebookAppToken) public var facebookAppToken: String?
|
|
174
|
+
@StringDataMember(code: ParameterCode.FacebookInappSecret) public var facebookInappSecret: String?
|
|
175
|
+
public required init() {}
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
public class ThirtPartyGoogleSettingsParam: Initiable {
|
|
179
|
+
@StringDataMember(code: ParameterCode.GoogleClientId) public var googleClientId: String?
|
|
180
|
+
@StringDataMember(code: ParameterCode.PackageId) public var packageId: String?
|
|
181
|
+
@StringDataMember(code: ParameterCode.PublicRSAKey) public var publicRSAKey: String?
|
|
182
|
+
public required init() {}
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
public class ThirtPartyGameCenterSettingsParam: Initiable {
|
|
186
|
+
@StringDataMember(code: ParameterCode.PackageId) public var packageId: String?
|
|
187
|
+
public required init() {}
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
public class ThirtPartyGooglePlayGameSettingsParam: Initiable {
|
|
191
|
+
@StringDataMember(code: ParameterCode.RedirectUri) public var redirectUri: String?
|
|
192
|
+
@StringDataMember(code: ParameterCode.ClientId) public var clientId: String?
|
|
193
|
+
@StringDataMember(code: ParameterCode.ClientSecret) public var clientSecret: String?
|
|
194
|
+
@StringDataMember(code: ParameterCode.ApplicationId) public var applicationId: String?
|
|
195
|
+
public required init() {}
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
public class ThirtPartyParam: Initiable {
|
|
199
|
+
@GNHashtableDataMember(code: ParameterCode.GoogleSettings, elementCls: ThirtPartyGoogleSettingsParam.self) public var googleSettings: GNHashtable?
|
|
200
|
+
@GNHashtableDataMember(code: ParameterCode.FacebookSettings, elementCls: ThirtPartyFacebookSettingsParam.self) public var facebookSettings: GNHashtable?
|
|
201
|
+
@GNHashtableDataMember(code: ParameterCode.AppleSettings, elementCls: ThirtPartyAppleSettingsParam.self) public var appleSettings: GNHashtable?
|
|
202
|
+
@GNHashtableDataMember(code: ParameterCode.GooglePlayGameSettings, elementCls: ThirtPartyGooglePlayGameSettingsParam.self) public var googlePlayGameSettings: GNHashtable?
|
|
203
|
+
@GNHashtableDataMember(code: ParameterCode.GameCenterSettings, elementCls: ThirtPartyGameCenterSettingsParam.self) public var gameCenterSettings: GNHashtable?
|
|
204
|
+
public required init() {}
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
public class EmailSettingsParam: Initiable {
|
|
208
|
+
@StringDataMember(code: ParameterCode.SendFrom) public var sendFrom: String?
|
|
209
|
+
@BooleanDataMember(code: ParameterCode.Secure) public var secure: Bool?
|
|
210
|
+
@StringDataMember(code: ParameterCode.Host) public var host: String?
|
|
211
|
+
@NumberDataMember(code: ParameterCode.Port) public var port: NSNumber?
|
|
212
|
+
@StringDataMember(code: ParameterCode.Username) public var username: String?
|
|
213
|
+
@StringDataMember(code: ParameterCode.Password) public var password: String?
|
|
214
|
+
public required init() {}
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
public class PushNotificationSettingsParam: Initiable {
|
|
218
|
+
@StringDataMember(code: ParameterCode.ProjectId) public var projectId: String?
|
|
219
|
+
@StringDataMember(code: ParameterCode.ClientEmail) public var clientEmail: String?
|
|
220
|
+
@StringDataMember(code: ParameterCode.PrivateKey) public var privateKey: String?
|
|
221
|
+
public required init() {}
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
public class GamePlayerPermissionRulesParam: Initiable {
|
|
225
|
+
@GNHashtableDataMember(code: ParameterCode.AddSegment, elementCls: PermissionRulesParam.self) public var addSegment: GNHashtable?
|
|
226
|
+
@GNHashtableDataMember(code: ParameterCode.RemoveSegment, elementCls: PermissionRulesParam.self) public var removeSegment: GNHashtable?
|
|
227
|
+
@GNHashtableDataMember(code: ParameterCode.GetSegment, elementCls: PermissionRulesParam.self) public var getSegment: GNHashtable?
|
|
228
|
+
@GNHashtableDataMember(code: ParameterCode.SetTag, elementCls: PermissionRulesParam.self) public var setTag: GNHashtable?
|
|
229
|
+
@GNHashtableDataMember(code: ParameterCode.RemoveTag, elementCls: PermissionRulesParam.self) public var removeTag: GNHashtable?
|
|
230
|
+
@GNHashtableDataMember(code: ParameterCode.GetTag, elementCls: PermissionRulesParam.self) public var getTag: GNHashtable?
|
|
231
|
+
@GNHashtableDataMember(code: ParameterCode.GetDisplayName, elementCls: PermissionRulesParam.self) public var getDisplayName: GNHashtable?
|
|
232
|
+
@GNHashtableDataMember(code: ParameterCode.SetDisplayName, elementCls: PermissionRulesParam.self) public var setDisplayName: GNHashtable?
|
|
233
|
+
@GNHashtableDataMember(code: ParameterCode.GetTsCreate, elementCls: PermissionRulesParam.self) public var getTsCreate: GNHashtable?
|
|
234
|
+
@GNHashtableDataMember(code: ParameterCode.GetIpAddressCreate, elementCls: PermissionRulesParam.self) public var getIpAddressCreate: GNHashtable?
|
|
235
|
+
@GNHashtableDataMember(code: ParameterCode.GetTsLastLogin, elementCls: PermissionRulesParam.self) public var getTsLastLogin: GNHashtable?
|
|
236
|
+
@GNHashtableDataMember(code: ParameterCode.SetPlayerBan, elementCls: PermissionRulesParam.self) public var setPlayerBan: GNHashtable?
|
|
237
|
+
@GNHashtableDataMember(code: ParameterCode.GetPlayerBan, elementCls: PermissionRulesParam.self) public var getPlayerBan: GNHashtable?
|
|
238
|
+
@GNHashtableDataMember(code: ParameterCode.SetCountryCode, elementCls: PermissionRulesParam.self) public var setCountryCode: GNHashtable?
|
|
239
|
+
@GNHashtableDataMember(code: ParameterCode.GetCountryCode, elementCls: PermissionRulesParam.self) public var getCountryCode: GNHashtable?
|
|
240
|
+
@GNHashtableDataMember(code: ParameterCode.SetAvatar, elementCls: PermissionRulesParam.self) public var setAvatar: GNHashtable?
|
|
241
|
+
@GNHashtableDataMember(code: ParameterCode.GetAvatar, elementCls: PermissionRulesParam.self) public var getAvatar: GNHashtable?
|
|
242
|
+
@GNHashtableDataMember(code: ParameterCode.ChangePlayerCurrency, elementCls: PermissionRulesParam.self) public var changePlayerCurrency: GNHashtable?
|
|
243
|
+
@GNHashtableDataMember(code: ParameterCode.GetPlayerCurrency, elementCls: PermissionRulesParam.self) public var getPlayerCurrency: GNHashtable?
|
|
244
|
+
@GNHashtableDataMember(code: ParameterCode.ChangePlayerStatistics, elementCls: PermissionRulesParam.self) public var changePlayerStatistics: GNHashtable?
|
|
245
|
+
@GNHashtableDataMember(code: ParameterCode.GetPlayerStatistics, elementCls: PermissionRulesParam.self) public var getPlayerStatistics: GNHashtable?
|
|
246
|
+
@GNHashtableDataMember(code: ParameterCode.GetStatisticsLeaderboard, elementCls: PermissionRulesParam.self) public var getStatisticsLeaderboard: GNHashtable?
|
|
247
|
+
@GNHashtableDataMember(code: ParameterCode.GetStatisticsLeaderboardAroundPlayer, elementCls: PermissionRulesParam.self) public var getStatisticsLeaderboardAroundPlayer: GNHashtable?
|
|
248
|
+
@GNHashtableDataMember(code: ParameterCode.GetCustomData, elementCls: PermissionRulesParam.self) public var getCustomData: GNHashtable?
|
|
249
|
+
@GNHashtableDataMember(code: ParameterCode.SetCustomData, elementCls: PermissionRulesParam.self) public var setCustomData: GNHashtable?
|
|
250
|
+
@GNHashtableDataMember(code: ParameterCode.SetPlayerData, elementCls: PermissionRulesParam.self) public var setPlayerData: GNHashtable?
|
|
251
|
+
@GNHashtableDataMember(code: ParameterCode.GetPlayerData, elementCls: PermissionRulesParam.self) public var getPlayerData: GNHashtable?
|
|
252
|
+
@GNHashtableDataMember(code: ParameterCode.GetPlayerInformation, elementCls: PermissionRulesParam.self) public var getPlayerInformation: GNHashtable?
|
|
253
|
+
@GNHashtableDataMember(code: ParameterCode.GetPlayersWithSegment, elementCls: PermissionRulesParam.self) public var getPlayersWithSegment: GNHashtable?
|
|
254
|
+
@GNHashtableDataMember(code: ParameterCode.GetPlayersWithTag, elementCls: PermissionRulesParam.self) public var getPlayersWithTag: GNHashtable?
|
|
255
|
+
@GNHashtableDataMember(code: ParameterCode.GetPlayerCharacter, elementCls: PermissionRulesParam.self) public var getPlayerCharacter: GNHashtable?
|
|
256
|
+
@GNHashtableDataMember(code: ParameterCode.GetPlayerInventory, elementCls: PermissionRulesParam.self) public var getPlayerInventory: GNHashtable?
|
|
257
|
+
@GNHashtableDataMember(code: ParameterCode.GetPlayerGroup, elementCls: PermissionRulesParam.self) public var getPlayerGroup: GNHashtable?
|
|
258
|
+
@GNHashtableDataMember(code: ParameterCode.GetPlayerFriend, elementCls: PermissionRulesParam.self) public var getPlayerFriend: GNHashtable?
|
|
259
|
+
@GNHashtableDataMember(code: ParameterCode.RemovePlayerItem, elementCls: PermissionRulesParam.self) public var removePlayerItem: GNHashtable?
|
|
260
|
+
@GNHashtableDataMember(code: ParameterCode.GetOnlineStatus, elementCls: PermissionRulesParam.self) public var getOnlineStatus: GNHashtable?
|
|
261
|
+
@GNHashtableDataMember(code: ParameterCode.CreateGroup, elementCls: PermissionRulesParam.self) public var createGroup: GNHashtable?
|
|
262
|
+
@GNHashtableDataMember(code: ParameterCode.CreatePlayerItem, elementCls: PermissionRulesParam.self) public var createPlayerItem: GNHashtable?
|
|
263
|
+
@GNHashtableDataMember(code: ParameterCode.CreatePlayerCharacter, elementCls: PermissionRulesParam.self) public var createPlayerCharacter: GNHashtable?
|
|
264
|
+
@GNHashtableDataMember(code: ParameterCode.AddPlayerFriend, elementCls: PermissionRulesParam.self) public var addPlayerFriend: GNHashtable?
|
|
265
|
+
@GNHashtableDataMember(code: ParameterCode.RemovePlayerFriend, elementCls: PermissionRulesParam.self) public var removePlayerFriend: GNHashtable?
|
|
266
|
+
@GNHashtableDataMember(code: ParameterCode.RemovePlayerCharacter, elementCls: PermissionRulesParam.self) public var removePlayerCharacter: GNHashtable?
|
|
267
|
+
@GNHashtableDataMember(code: ParameterCode.JoinGroup, elementCls: PermissionRulesParam.self) public var joinGroup: GNHashtable?
|
|
268
|
+
@GNHashtableDataMember(code: ParameterCode.LeaveGroup, elementCls: PermissionRulesParam.self) public var leaveGroup: GNHashtable?
|
|
269
|
+
@GNHashtableDataMember(code: ParameterCode.GetPlayersWithDisplayName, elementCls: PermissionRulesParam.self) public var getPlayersWithDisplayName: GNHashtable?
|
|
270
|
+
@GNHashtableDataMember(code: ParameterCode.GetFriendStatisticsLeaderboardAroundPlayer, elementCls: PermissionRulesParam.self) public var getFriendStatisticsLeaderboardAroundPlayer: GNHashtable?
|
|
271
|
+
@GNHashtableDataMember(code: ParameterCode.GetFriendStatisticsLeaderboard, elementCls: PermissionRulesParam.self) public var getFriendStatisticsLeaderboard: GNHashtable?
|
|
272
|
+
@GNHashtableDataMember(code: ParameterCode.GetCurrencyLeaderboard, elementCls: PermissionRulesParam.self) public var getCurrencyLeaderboard: GNHashtable?
|
|
273
|
+
@GNHashtableDataMember(code: ParameterCode.GetCreateLeaderboard, elementCls: PermissionRulesParam.self) public var getCreateLeaderboard: GNHashtable?
|
|
274
|
+
@GNHashtableDataMember(code: ParameterCode.GetLastLoginLeaderboard, elementCls: PermissionRulesParam.self) public var getLastLoginLeaderboard: GNHashtable?
|
|
275
|
+
@GNHashtableDataMember(code: ParameterCode.GetStatisticsLog, elementCls: PermissionRulesParam.self) public var getStatisticsLog: GNHashtable?
|
|
276
|
+
@GNHashtableDataMember(code: ParameterCode.GetCurrencyLog, elementCls: PermissionRulesParam.self) public var getCurrencyLog: GNHashtable?
|
|
277
|
+
public required init() {}
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
public class GamePlayerSettingsParam: Initiable {
|
|
281
|
+
@GNArrayDataMember(code: ParameterCode.PlayerCurrenciesSettings, elementCls: CurrencySettingsParam.self) public var playerCurrenciesSettings: GNArray?
|
|
282
|
+
@GNArrayDataMember(code: ParameterCode.PlayerStatisticsSettings, elementCls: StatisticsSettingsParam.self) public var playerStatisticsSettings: GNArray?
|
|
283
|
+
@GNArrayDataMember(code: ParameterCode.PlayerDatasSettings, elementCls: DataSettingsParam.self) public var playerDatasSettings: GNArray?
|
|
284
|
+
@GNArrayDataMember(code: ParameterCode.CustomDatasSettings, elementCls: DataSettingsParam.self) public var customDatasSettings: GNArray?
|
|
285
|
+
@GNArrayDataMember(code: ParameterCode.TagsSettings, elementCls: TagSettingsParam.self) public var tagsSettings: GNArray?
|
|
286
|
+
@GNArrayDataMember(code: ParameterCode.PlayerCharacterCatalogSettings, elementCls: CharacterCatalogSettingsParam.self) public var playerCharacterCatalogSettings: GNArray?
|
|
287
|
+
@GNArrayDataMember(code: ParameterCode.PlayerGroupCatalogSettings, elementCls: GroupCatalogSettingsParam.self) public var playerGroupCatalogSettings: GNArray?
|
|
288
|
+
@GNArrayDataMember(code: ParameterCode.PlayerItemCatalogSettings, elementCls: ItemCatalogSettingsParam.self) public var playerItemCatalogSettings: GNArray?
|
|
289
|
+
@GNArrayDataMember(code: ParameterCode.PlayerFriendCatalogSettings, elementCls: FriendCatalogSettingsParam.self) public var playerFriendCatalogSettings: GNArray?
|
|
290
|
+
public required init() {}
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
public class GroupSettingsParam: Initiable {
|
|
294
|
+
@GNArrayDataMember(code: ParameterCode.GroupCurrenciesSettings, elementCls: CurrencySettingsParam.self) public var groupCurrenciesSettings: GNArray?
|
|
295
|
+
@GNArrayDataMember(code: ParameterCode.GroupStatisticsSettings, elementCls: StatisticsSettingsParam.self) public var groupStatisticsSettings: GNArray?
|
|
296
|
+
@GNArrayDataMember(code: ParameterCode.GroupDatasSettings, elementCls: DataSettingsParam.self) public var groupDatasSettings: GNArray?
|
|
297
|
+
@GNArrayDataMember(code: ParameterCode.CustomDatasSettings, elementCls: DataSettingsParam.self) public var customDatasSettings: GNArray?
|
|
298
|
+
@GNArrayDataMember(code: ParameterCode.TagsSettings, elementCls: TagSettingsParam.self) public var tagsSettings: GNArray?
|
|
299
|
+
@GNArrayDataMember(code: ParameterCode.GroupItemCatalogSettings, elementCls: ItemCatalogSettingsParam.self) public var groupItemCatalogSettings: GNArray?
|
|
300
|
+
public required init() {}
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
public class InventorySettingsParam: Initiable {
|
|
304
|
+
@GNArrayDataMember(code: ParameterCode.ItemStatisticsSettings, elementCls: StatisticsSettingsParam.self) public var itemStatisticsSettings: GNArray?
|
|
305
|
+
@GNArrayDataMember(code: ParameterCode.ItemDatasSettings, elementCls: DataSettingsParam.self) public var itemDatasSettings: GNArray?
|
|
306
|
+
@GNArrayDataMember(code: ParameterCode.CustomDatasSettings, elementCls: DataSettingsParam.self) public var customDatasSettings: GNArray?
|
|
307
|
+
@GNArrayDataMember(code: ParameterCode.TagsSettings, elementCls: TagSettingsParam.self) public var tagsSettings: GNArray?
|
|
308
|
+
public required init() {}
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
public class GameSettingsParam: Initiable {
|
|
312
|
+
@GNHashtableDataMember(code: ParameterCode.GamePlayerSettings, elementCls: GamePlayerSettingsParam.self) public var gamePlayerSettings: GNHashtable?
|
|
313
|
+
@GNHashtableDataMember(code: ParameterCode.CharacterPlayerSettings, elementCls: CharacterPlayerSettingsParam.self) public var characterPlayerSettings: GNHashtable?
|
|
314
|
+
@GNHashtableDataMember(code: ParameterCode.GroupSettings, elementCls: GroupSettingsParam.self) public var groupSettings: GNHashtable?
|
|
315
|
+
@GNHashtableDataMember(code: ParameterCode.InventorySettings, elementCls: InventorySettingsParam.self) public var inventorySettings: GNHashtable?
|
|
316
|
+
public required init() {}
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
public class GenericServiceSettingsParam: Initiable {
|
|
320
|
+
@StringDataMember(code: ParameterCode.ServiceName) public var serviceName: String?
|
|
321
|
+
public required init() {}
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
public class GroupPermissionRulesParam: Initiable {
|
|
325
|
+
// Implementation omitted for brevity, adding key fields as hashtables per pattern
|
|
326
|
+
@GNHashtableDataMember(code: ParameterCode.AddSegment, elementCls: PermissionRulesParam.self) public var addSegment: GNHashtable?
|
|
327
|
+
@GNHashtableDataMember(code: ParameterCode.RemoveSegment, elementCls: PermissionRulesParam.self) public var removeSegment: GNHashtable?
|
|
328
|
+
@GNHashtableDataMember(code: ParameterCode.GetSegment, elementCls: PermissionRulesParam.self) public var getSegment: GNHashtable?
|
|
329
|
+
// ... include all other permissions
|
|
330
|
+
public required init() {}
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
// MARK: - Response Data Classes
|
|
334
|
+
|
|
335
|
+
public class EmptyResponseData: Initiable {
|
|
336
|
+
public required init() {}
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
public class AdminAccountResponseData: Initiable {
|
|
340
|
+
@StringDataMember(code: ParameterCode.UserId) public var userId: String?
|
|
341
|
+
@StringDataMember(code: ParameterCode.Username) public var username: String?
|
|
342
|
+
@StringDataMember(code: ParameterCode.SecretKey) public var secretKey: String?
|
|
343
|
+
public required init() {}
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
public class GetAdminAccountListResponseData: Initiable {
|
|
347
|
+
@GNArrayDataMember(code: ParameterCode.Results, elementCls: AdminAccountResponseData.self) public var results: GNArray?
|
|
348
|
+
public required init() {}
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
public class GetGameInformationResponseData: Initiable {
|
|
352
|
+
@StringDataMember(code: ParameterCode.GameId) public var gameId: String?
|
|
353
|
+
@NumberDataMember(code: ParameterCode.TsCreate) public var tsCreate: NSNumber?
|
|
354
|
+
@StringDataMember(code: ParameterCode.GameName) public var gameName: String?
|
|
355
|
+
@StringDataMember(code: ParameterCode.CreatorId) public var creatorId: String?
|
|
356
|
+
@StringDataMember(code: ParameterCode.GameDescription) public var gameDescription: String?
|
|
357
|
+
@StringDataMember(code: ParameterCode.GameIconUrl) public var gameIconUrl: String?
|
|
358
|
+
@GNHashtableDataMember(code: ParameterCode.GameSettings, elementCls: GameSettingsParam.self) public var gameSettings: GNHashtable?
|
|
359
|
+
// match making queue settings...
|
|
360
|
+
public required init() {}
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
// ... Implement all other response data classes
|
|
364
|
+
|
|
365
|
+
// MARK: - Request Data Classes
|
|
366
|
+
|
|
367
|
+
public class ChangePasswordAdminAccountRequestData: Initiable {
|
|
368
|
+
@StringDataMember(code: ParameterCode.CurrentPassword) public var currentPassword: String?
|
|
369
|
+
@StringDataMember(code: ParameterCode.Password) public var password: String?
|
|
370
|
+
public required init() {}
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
public class GetAdminAccountListRequestData: Initiable {
|
|
374
|
+
public required init() {}
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
public class GetGameInformationRequestData: Initiable {
|
|
378
|
+
@StringDataMember(code: ParameterCode.GameId) public var gameId: String?
|
|
379
|
+
public required init() {}
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
public class GetGameListRequestData: Initiable {
|
|
383
|
+
public required init() {}
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
public class GetMasterGameSettingsRequestData: Initiable {
|
|
387
|
+
public required init() {}
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
public class GetSecretInfoInformationRequestData: Initiable {
|
|
391
|
+
@StringDataMember(code: ParameterCode.SecretKey) public var secretKey: String?
|
|
392
|
+
public required init() {}
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
public class GetSecretInfoListRequestData: Initiable {
|
|
396
|
+
public required init() {}
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
public class GetServerLogRequestData: Initiable {
|
|
400
|
+
@NumberDataMember(code: ParameterCode.Skip) public var skip: NSNumber?
|
|
401
|
+
@NumberDataMember(code: ParameterCode.Limit) public var limit: NSNumber?
|
|
402
|
+
public required init() {}
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
public class CreateAdminAccountRequestData: Initiable {
|
|
406
|
+
@StringDataMember(code: ParameterCode.Username) public var username: String?
|
|
407
|
+
@StringDataMember(code: ParameterCode.Password) public var password: String?
|
|
408
|
+
@StringDataMember(code: ParameterCode.SecretKey) public var secretKey: String?
|
|
409
|
+
public required init() {}
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
public class CreateGameRequestData: Initiable {
|
|
413
|
+
@StringDataMember(code: ParameterCode.GameId) public var gameId: String?
|
|
414
|
+
public required init() {}
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
public class CreateSecretInfoRequestData: Initiable {
|
|
418
|
+
@StringDataMember(code: ParameterCode.SecretKey) public var secretKey: String?
|
|
419
|
+
@StringDataMember(code: ParameterCode.GameId) public var gameId: String?
|
|
420
|
+
@NumberDataMember(code: ParameterCode.Role) public var role: NSNumber?
|
|
421
|
+
// PermissionParam ...
|
|
422
|
+
public required init() {}
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
// ... Add all other request data classes
|
|
426
|
+
}
|