com.xmobitea.changx.gn-unity 2.0.3 → 2.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Editor/GNServerSettingsEditor.cs +16 -300
- package/Runtime/Common/GNArray.cs +387 -302
- package/Runtime/Common/GNArray.cs.meta +11 -11
- package/Runtime/Common/GNData.cs +61 -48
- package/Runtime/Common/GNData.cs.meta +11 -11
- package/Runtime/Common/GNHashtable.cs +404 -241
- package/Runtime/Common/GNHashtable.cs.meta +11 -11
- package/Runtime/Common/IGNData.cs +20 -11
- package/Runtime/Common/IGNData.cs.meta +11 -11
- package/Runtime/Common.meta +8 -8
- package/Runtime/Config/GNServerSettings.cs +136 -92
- package/Runtime/Config/GNServerSettings.cs.meta +11 -11
- package/Runtime/Config.meta +8 -8
- package/Runtime/Constant/Commands.cs +82 -19
- package/Runtime/Constant/Commands.cs.meta +11 -11
- package/Runtime/Constant/EnumType/FriendStatus.cs +12 -12
- package/Runtime/Constant/EnumType/FriendStatus.cs.meta +11 -11
- package/Runtime/Constant/EnumType/GoogleLoginType.cs +5 -5
- package/Runtime/Constant/EnumType/GoogleLoginType.cs.meta +11 -11
- package/Runtime/Constant/EnumType/GroupStatus.cs +7 -7
- package/Runtime/Constant/EnumType/GroupStatus.cs.meta +11 -11
- package/Runtime/Constant/EnumType/InvalidMemberType.cs +23 -23
- package/Runtime/Constant/EnumType/InvalidMemberType.cs.meta +11 -11
- package/Runtime/Constant/EnumType/ItemType.cs +5 -5
- package/Runtime/Constant/EnumType/ItemType.cs.meta +11 -11
- package/Runtime/Constant/EnumType/MatchmakingMemberStatus.cs +6 -6
- package/Runtime/Constant/EnumType/MatchmakingMemberStatus.cs.meta +11 -11
- package/Runtime/Constant/EnumType/MatchmakingTicketStatus.cs +2 -2
- package/Runtime/Constant/EnumType/MatchmakingTicketStatus.cs.meta +11 -11
- package/Runtime/Constant/EnumType/OwnerType.cs +3 -2
- package/Runtime/Constant/EnumType/OwnerType.cs.meta +11 -11
- package/Runtime/Constant/EnumType/PermissionDataItem.cs +10 -10
- package/Runtime/Constant/EnumType/PermissionDataItem.cs.meta +11 -11
- package/Runtime/Constant/EnumType/PushPlatformType.cs +10 -0
- package/Runtime/Constant/EnumType/PushPlatformType.cs.meta +11 -0
- package/Runtime/Constant/EnumType/RequestRole.cs +11 -11
- package/Runtime/Constant/EnumType/RequestRole.cs.meta +7 -7
- package/Runtime/Constant/EnumType/RequestType.cs +20 -19
- package/Runtime/Constant/EnumType/RequestType.cs.meta +11 -11
- package/Runtime/Constant/EnumType/StoreReceiveType.cs +13 -0
- package/Runtime/Constant/EnumType/StoreReceiveType.cs.meta +11 -0
- package/Runtime/Constant/EnumType.meta +8 -8
- package/Runtime/Constant/ErrorCode/GNErrorCode.cs +53 -48
- package/Runtime/Constant/ErrorCode/GNErrorCode.cs.meta +7 -7
- package/Runtime/Constant/ErrorCode.meta +8 -8
- package/Runtime/Constant/EventCode.cs +43 -16
- package/Runtime/Constant/EventCode.cs.meta +11 -11
- package/Runtime/Constant/OperationCode.cs +249 -211
- package/Runtime/Constant/OperationCode.cs.meta +11 -11
- package/Runtime/Constant/ParameterCode/GNParameterCode.cs +614 -466
- package/Runtime/Constant/ParameterCode/GNParameterCode.cs.meta +11 -11
- package/Runtime/Constant/ParameterCode/ParameterCode.cs +12 -12
- package/Runtime/Constant/ParameterCode/ParameterCode.cs.meta +11 -11
- package/Runtime/Constant/ParameterCode.meta +8 -8
- package/Runtime/Constant/ReturnCode.cs +73 -25
- package/Runtime/Constant/ReturnCode.cs.meta +11 -11
- package/Runtime/Constant.meta +8 -8
- package/Runtime/Entity/DataMember.cs +342 -124
- package/Runtime/Entity/DataMember.cs.meta +11 -11
- package/Runtime/Entity/GNMetadata.cs +72 -27
- package/Runtime/Entity/GNMetadata.cs.meta +11 -11
- package/Runtime/Entity/InvalidMember.cs +52 -33
- package/Runtime/Entity/InvalidMember.cs.meta +11 -11
- package/Runtime/Entity/Models/AuthenticateModels.cs +251 -207
- package/Runtime/Entity/Models/AuthenticateModels.cs.meta +11 -11
- package/Runtime/Entity/Models/AuthenticateRequestModels.cs +153 -131
- package/Runtime/Entity/Models/AuthenticateRequestModels.cs.meta +11 -11
- package/Runtime/Entity/Models/AuthenticateResponseModels.cs +61 -51
- package/Runtime/Entity/Models/AuthenticateResponseModels.cs.meta +11 -11
- package/Runtime/Entity/Models/CharacterPlayerModels.cs +985 -849
- package/Runtime/Entity/Models/CharacterPlayerModels.cs.meta +11 -11
- package/Runtime/Entity/Models/CharacterPlayerRequestModels.cs +957 -885
- package/Runtime/Entity/Models/CharacterPlayerRequestModels.cs.meta +11 -11
- package/Runtime/Entity/Models/CharacterPlayerResponseModels.cs +165 -150
- package/Runtime/Entity/Models/CharacterPlayerResponseModels.cs.meta +11 -11
- package/Runtime/Entity/Models/CloudScriptModels.cs +185 -0
- package/Runtime/Entity/Models/CloudScriptModels.cs.meta +11 -0
- package/Runtime/Entity/Models/CloudScriptRequestModels.cs +134 -0
- package/Runtime/Entity/Models/CloudScriptRequestModels.cs.meta +11 -0
- package/Runtime/Entity/Models/CloudScriptResponseModels.cs +34 -0
- package/Runtime/Entity/Models/CloudScriptResponseModels.cs.meta +11 -0
- package/Runtime/Entity/Models/ContentModels.cs +150 -153
- package/Runtime/Entity/Models/ContentModels.cs.meta +11 -11
- package/Runtime/Entity/Models/ContentRequestModels.cs +129 -129
- package/Runtime/Entity/Models/ContentRequestModels.cs.meta +11 -11
- package/Runtime/Entity/Models/ContentResponseModels.cs +24 -24
- package/Runtime/Entity/Models/ContentResponseModels.cs.meta +11 -11
- package/Runtime/Entity/Models/DashboardModels.cs +1684 -1156
- package/Runtime/Entity/Models/DashboardModels.cs.meta +11 -11
- package/Runtime/Entity/Models/DashboardRequestModels.cs +220 -147
- package/Runtime/Entity/Models/DashboardRequestModels.cs.meta +11 -11
- package/Runtime/Entity/Models/DashboardResponseModels.cs +92 -57
- package/Runtime/Entity/Models/DashboardResponseModels.cs.meta +11 -11
- package/Runtime/Entity/Models/GamePlayerModels.cs +1073 -933
- package/Runtime/Entity/Models/GamePlayerModels.cs.meta +11 -11
- package/Runtime/Entity/Models/GamePlayerRequestModels.cs +939 -867
- package/Runtime/Entity/Models/GamePlayerRequestModels.cs.meta +11 -11
- package/Runtime/Entity/Models/GamePlayerResponseModels.cs +162 -147
- package/Runtime/Entity/Models/GamePlayerResponseModels.cs.meta +11 -11
- package/Runtime/Entity/Models/GenericModels.cs +102 -102
- package/Runtime/Entity/Models/GenericModels.cs.meta +11 -11
- package/Runtime/Entity/Models/GroupModels.cs +812 -676
- package/Runtime/Entity/Models/GroupModels.cs.meta +11 -11
- package/Runtime/Entity/Models/GroupRequestModels.cs +741 -669
- package/Runtime/Entity/Models/GroupRequestModels.cs.meta +11 -11
- package/Runtime/Entity/Models/GroupResponseModels.cs +129 -114
- package/Runtime/Entity/Models/GroupResponseModels.cs.meta +11 -11
- package/Runtime/Entity/Models/InventoryModels.cs +667 -558
- package/Runtime/Entity/Models/InventoryModels.cs.meta +11 -11
- package/Runtime/Entity/Models/InventoryRequestModels.cs +626 -579
- package/Runtime/Entity/Models/InventoryRequestModels.cs.meta +11 -11
- package/Runtime/Entity/Models/InventoryResponseModels.cs +109 -99
- package/Runtime/Entity/Models/InventoryResponseModels.cs.meta +11 -11
- package/Runtime/Entity/Models/MasterPlayerModels.cs +1882 -1340
- package/Runtime/Entity/Models/MasterPlayerModels.cs.meta +11 -11
- package/Runtime/Entity/Models/MasterPlayerRequestModels.cs +1643 -1253
- package/Runtime/Entity/Models/MasterPlayerRequestModels.cs.meta +11 -11
- package/Runtime/Entity/Models/MasterPlayerResponseModels.cs +293 -213
- package/Runtime/Entity/Models/MasterPlayerResponseModels.cs.meta +11 -11
- package/Runtime/Entity/Models/MultiplayerModels.cs +293 -223
- package/Runtime/Entity/Models/MultiplayerModels.cs.meta +11 -11
- package/Runtime/Entity/Models/MultiplayerRequestModels.cs +199 -149
- package/Runtime/Entity/Models/MultiplayerRequestModels.cs.meta +11 -11
- package/Runtime/Entity/Models/MultiplayerResponseModels.cs +59 -49
- package/Runtime/Entity/Models/MultiplayerResponseModels.cs.meta +11 -11
- package/Runtime/Entity/Models/StoreInventoryModels.cs +514 -323
- package/Runtime/Entity/Models/StoreInventoryModels.cs.meta +11 -11
- package/Runtime/Entity/Models/StoreInventoryRequestModels.cs +236 -165
- package/Runtime/Entity/Models/StoreInventoryRequestModels.cs.meta +11 -11
- package/Runtime/Entity/Models/StoreInventoryResponseModels.cs +45 -30
- package/Runtime/Entity/Models/StoreInventoryResponseModels.cs.meta +11 -11
- package/Runtime/Entity/Models.meta +8 -8
- package/Runtime/Entity/OperationEvent.cs +111 -75
- package/Runtime/Entity/OperationEvent.cs.meta +11 -11
- package/Runtime/Entity/OperationHelper.cs +51 -35
- package/Runtime/Entity/OperationHelper.cs.meta +11 -11
- package/Runtime/Entity/OperationRequest.cs +142 -99
- package/Runtime/Entity/OperationRequest.cs.meta +11 -11
- package/Runtime/Entity/OperationResponse.cs +111 -63
- package/Runtime/Entity/OperationResponse.cs.meta +11 -11
- package/Runtime/Entity/Request/CustomOperationRequest.cs +112 -61
- package/Runtime/Entity/Request/CustomOperationRequest.cs.meta +11 -11
- package/Runtime/Entity/Request.meta +8 -8
- package/Runtime/Entity/Response/CustomOperationResponse.cs +84 -63
- package/Runtime/Entity/Response/CustomOperationResponse.cs.meta +11 -11
- package/Runtime/Entity/Response.meta +8 -8
- package/Runtime/Entity.meta +8 -8
- package/Runtime/GNNetwork.cs +501 -182
- package/Runtime/GNNetwork.cs.meta +11 -11
- package/Runtime/GNNetworkApi.cs +38 -19
- package/Runtime/GNNetworkApi.cs.meta +11 -11
- package/Runtime/GNNetworkAuthenticateApi.cs +531 -98
- package/Runtime/GNNetworkAuthenticateApi.cs.meta +11 -11
- package/Runtime/GNNetworkCharacterPlayerApi.cs +1587 -762
- package/Runtime/GNNetworkCharacterPlayerApi.cs.meta +11 -11
- package/Runtime/GNNetworkCloudScriptApi.cs +181 -0
- package/Runtime/GNNetworkCloudScriptApi.cs.meta +11 -0
- package/Runtime/GNNetworkContentApi.cs +238 -132
- package/Runtime/GNNetworkContentApi.cs.meta +11 -11
- package/Runtime/GNNetworkDashboardApi.cs +278 -117
- package/Runtime/GNNetworkDashboardApi.cs.meta +11 -11
- package/Runtime/GNNetworkGamePlayerApi.cs +1558 -747
- package/Runtime/GNNetworkGamePlayerApi.cs.meta +11 -11
- package/Runtime/GNNetworkGroupApi.cs +1228 -582
- package/Runtime/GNNetworkGroupApi.cs.meta +11 -11
- package/Runtime/GNNetworkInventoryApi.cs +1048 -507
- package/Runtime/GNNetworkInventoryApi.cs.meta +11 -11
- package/Runtime/GNNetworkMasterPlayerApi.cs +2586 -1067
- package/Runtime/GNNetworkMasterPlayerApi.cs.meta +11 -11
- package/Runtime/GNNetworkMultiplayerApi.cs +328 -147
- package/Runtime/GNNetworkMultiplayerApi.cs.meta +11 -11
- package/Runtime/GNNetworkStoreInventoryApi.cs +388 -162
- package/Runtime/GNNetworkStoreInventoryApi.cs.meta +11 -11
- package/Runtime/Helper/CodeHelper.cs +140 -98
- package/Runtime/Helper/CodeHelper.cs.meta +11 -11
- package/Runtime/Helper/ConverterService.cs +236 -52
- package/Runtime/Helper/ConverterService.cs.meta +11 -11
- package/Runtime/Helper/ParseGNHelper.cs +451 -451
- package/Runtime/Helper/ParseGNHelper.cs.meta +11 -11
- package/Runtime/Helper.meta +8 -8
- package/Runtime/Logger/GNDebug.cs +92 -49
- package/Runtime/Logger/GNDebug.cs.meta +11 -11
- package/Runtime/Logger.meta +8 -8
- package/Runtime/Networking/AuthenticateStatus.cs +57 -35
- package/Runtime/Networking/AuthenticateStatus.cs.meta +11 -11
- package/Runtime/Networking/Handler/IServerEventHandler.cs +25 -25
- package/Runtime/Networking/Handler/IServerEventHandler.cs.meta +11 -11
- package/Runtime/Networking/Handler/OnCharacterPlayerFriendUpdateEventHandler.cs +61 -32
- package/Runtime/Networking/Handler/OnCharacterPlayerFriendUpdateEventHandler.cs.meta +11 -11
- package/Runtime/Networking/Handler/OnCharacterPlayerGroupUpdateEventHandler.cs +54 -33
- package/Runtime/Networking/Handler/OnCharacterPlayerGroupUpdateEventHandler.cs.meta +11 -11
- package/Runtime/Networking/Handler/OnGamePlayerFriendUpdateEventHandler.cs +54 -32
- package/Runtime/Networking/Handler/OnGamePlayerFriendUpdateEventHandler.cs.meta +11 -11
- package/Runtime/Networking/Handler/OnGamePlayerGroupUpdateEventHandler.cs +54 -32
- package/Runtime/Networking/Handler/OnGamePlayerGroupUpdateEventHandler.cs.meta +11 -11
- package/Runtime/Networking/Handler/OnGroupMemberUpdateEventHandler.cs +48 -29
- package/Runtime/Networking/Handler/OnGroupMemberUpdateEventHandler.cs.meta +11 -11
- package/Runtime/Networking/Handler/OnGroupMessageUpdateEventHandler.cs +47 -29
- package/Runtime/Networking/Handler/OnGroupMessageUpdateEventHandler.cs.meta +11 -11
- package/Runtime/Networking/Handler.meta +8 -8
- package/Runtime/Networking/Http/HttpPeer.cs +68 -25
- package/Runtime/Networking/Http/HttpPeer.cs.meta +11 -11
- package/Runtime/Networking/Http/NetworkingHttpPeerBase.cs +65 -25
- package/Runtime/Networking/Http/NetworkingHttpPeerBase.cs.meta +11 -11
- package/Runtime/Networking/Http/NetworkingPeerHttpClientRequest.cs +513 -486
- package/Runtime/Networking/Http/NetworkingPeerHttpClientRequest.cs.meta +11 -11
- package/Runtime/Networking/Http/NetworkingPeerHttpRequest.cs +172 -142
- package/Runtime/Networking/Http/NetworkingPeerHttpRequest.cs.meta +11 -11
- package/Runtime/Networking/Http/NetworkingPeerUnityWebRequest.cs +225 -188
- package/Runtime/Networking/Http/NetworkingPeerUnityWebRequest.cs.meta +11 -11
- package/Runtime/Networking/Http.meta +8 -8
- package/Runtime/Networking/IPeer.cs +41 -19
- package/Runtime/Networking/IPeer.cs.meta +11 -11
- package/Runtime/Networking/NetworkingPeer.cs +198 -144
- package/Runtime/Networking/NetworkingPeer.cs.meta +11 -11
- package/Runtime/Networking/NetworkingPeerAPI.cs +20 -21
- package/Runtime/Networking/NetworkingPeerAPI.cs.meta +11 -11
- package/Runtime/Networking/OperationPending.cs +159 -95
- package/Runtime/Networking/OperationPending.cs.meta +11 -11
- package/Runtime/Networking/PeerBase.cs +305 -242
- package/Runtime/Networking/PeerBase.cs.meta +11 -11
- package/Runtime/Networking/Socket/NetworkingPeerSocketV2.cs +222 -185
- package/Runtime/Networking/Socket/NetworkingPeerSocketV2.cs.meta +11 -11
- package/Runtime/Networking/Socket/NetworkingPeerSocketV3.cs +235 -177
- package/Runtime/Networking/Socket/NetworkingPeerSocketV3.cs.meta +11 -11
- package/Runtime/Networking/Socket/NetworkingSocketPeerBase.cs +165 -23
- package/Runtime/Networking/Socket/NetworkingSocketPeerBase.cs.meta +11 -11
- package/Runtime/Networking/Socket/SocketPeer.cs +242 -197
- package/Runtime/Networking/Socket/SocketPeer.cs.meta +11 -11
- package/Runtime/Networking/Socket.meta +8 -8
- package/Runtime/Networking.meta +8 -8
- package/Runtime/Unity/ServiceCoroutine.cs +10 -0
- package/Runtime/Unity/ServiceCoroutine.cs.meta +11 -0
- package/Runtime/Unity/ServiceUpdate.cs +33 -20
- package/Runtime/Unity/ServiceUpdate.cs.meta +11 -11
- package/Runtime/Unity.meta +8 -8
- package/Runtime/XmobiTea.GN.runtime.asmdef +16 -16
- package/Runtime/XmobiTea.GN.runtime.asmdef.meta +7 -7
- package/package.json +1 -1
|
@@ -2,358 +2,438 @@
|
|
|
2
2
|
{
|
|
3
3
|
using XmobiTea.GN.Entity.Response;
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
5
|
+
public class MasterPlayerResponseModels
|
|
6
|
+
{
|
|
7
|
+
public class AddSegmentOperationResponse : CustomOperationResponse<MasterPlayerModels.EmptyResponseData>
|
|
8
|
+
{
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
}
|
|
11
11
|
|
|
12
|
-
|
|
13
|
-
|
|
12
|
+
public class ChangeAccountPasswordOperationResponse : CustomOperationResponse<MasterPlayerModels.EmptyResponseData>
|
|
13
|
+
{
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
}
|
|
16
16
|
|
|
17
|
-
|
|
18
|
-
|
|
17
|
+
public class GetAvatarOperationResponse : CustomOperationResponse<MasterPlayerModels.MasterPlayerResponseData>
|
|
18
|
+
{
|
|
19
19
|
|
|
20
|
-
|
|
20
|
+
}
|
|
21
21
|
|
|
22
|
-
|
|
23
|
-
|
|
22
|
+
public class GetCountryCodeOperationResponse : CustomOperationResponse<MasterPlayerModels.MasterPlayerResponseData>
|
|
23
|
+
{
|
|
24
24
|
|
|
25
|
-
|
|
25
|
+
}
|
|
26
26
|
|
|
27
|
-
|
|
28
|
-
|
|
27
|
+
public class GetCustomDataOperationResponse : CustomOperationResponse<MasterPlayerModels.MasterPlayerResponseData>
|
|
28
|
+
{
|
|
29
29
|
|
|
30
|
-
|
|
30
|
+
}
|
|
31
31
|
|
|
32
|
-
|
|
33
|
-
|
|
32
|
+
public class GetDisplayNameOperationResponse : CustomOperationResponse<MasterPlayerModels.MasterPlayerResponseData>
|
|
33
|
+
{
|
|
34
34
|
|
|
35
|
-
|
|
35
|
+
}
|
|
36
36
|
|
|
37
|
-
|
|
38
|
-
|
|
37
|
+
public class GetEmailOperationResponse : CustomOperationResponse<MasterPlayerModels.MasterPlayerResponseData>
|
|
38
|
+
{
|
|
39
39
|
|
|
40
|
-
|
|
40
|
+
}
|
|
41
41
|
|
|
42
|
-
|
|
43
|
-
|
|
42
|
+
public class GetExternalOperationResponse : CustomOperationResponse<MasterPlayerModels.MasterPlayerResponseData>
|
|
43
|
+
{
|
|
44
44
|
|
|
45
|
-
|
|
45
|
+
}
|
|
46
46
|
|
|
47
|
-
|
|
48
|
-
|
|
47
|
+
public class GetIpAddressCreateOperationResponse : CustomOperationResponse<MasterPlayerModels.MasterPlayerResponseData>
|
|
48
|
+
{
|
|
49
49
|
|
|
50
|
-
|
|
50
|
+
}
|
|
51
51
|
|
|
52
|
-
|
|
53
|
-
|
|
52
|
+
public class GetPlayerBanOperationResponse : CustomOperationResponse<MasterPlayerModels.MasterPlayerResponseData>
|
|
53
|
+
{
|
|
54
54
|
|
|
55
|
-
|
|
55
|
+
}
|
|
56
56
|
|
|
57
|
-
|
|
58
|
-
|
|
57
|
+
public class GetPlayerCurrencyOperationResponse : CustomOperationResponse<MasterPlayerModels.MasterPlayerResponseData>
|
|
58
|
+
{
|
|
59
59
|
|
|
60
|
-
|
|
60
|
+
}
|
|
61
61
|
|
|
62
|
-
|
|
63
|
-
|
|
62
|
+
public class GetPlayerDataOperationResponse : CustomOperationResponse<MasterPlayerModels.MasterPlayerResponseData>
|
|
63
|
+
{
|
|
64
64
|
|
|
65
|
-
|
|
65
|
+
}
|
|
66
66
|
|
|
67
|
-
|
|
68
|
-
|
|
67
|
+
public class GetPlayerInformationOperationResponse : CustomOperationResponse<MasterPlayerModels.MasterPlayerResponseData>
|
|
68
|
+
{
|
|
69
69
|
|
|
70
|
-
|
|
70
|
+
}
|
|
71
71
|
|
|
72
|
-
|
|
73
|
-
|
|
72
|
+
public class GetPlayerStatisticsOperationResponse : CustomOperationResponse<MasterPlayerModels.MasterPlayerResponseData>
|
|
73
|
+
{
|
|
74
74
|
|
|
75
|
-
|
|
75
|
+
}
|
|
76
76
|
|
|
77
|
-
|
|
78
|
-
|
|
77
|
+
public class GetPlayersWithAppleOperationResponse : CustomOperationResponse<MasterPlayerModels.GetPlayersWithAppleResponseData>
|
|
78
|
+
{
|
|
79
79
|
|
|
80
|
-
|
|
80
|
+
}
|
|
81
81
|
|
|
82
|
-
|
|
83
|
-
|
|
82
|
+
public class GetPlayersWithDisplayNameOperationResponse : CustomOperationResponse<MasterPlayerModels.MasterPlayersWithUserIdResponseData>
|
|
83
|
+
{
|
|
84
84
|
|
|
85
|
-
|
|
85
|
+
}
|
|
86
86
|
|
|
87
|
-
|
|
88
|
-
|
|
87
|
+
public class GetPlayersWithFacebookOperationResponse : CustomOperationResponse<MasterPlayerModels.GetPlayersWithFacebookResponseData>
|
|
88
|
+
{
|
|
89
89
|
|
|
90
|
-
|
|
90
|
+
}
|
|
91
91
|
|
|
92
|
-
|
|
93
|
-
|
|
92
|
+
public class GetPlayersWithGenericServiceOperationResponse : CustomOperationResponse<MasterPlayerModels.GetPlayersWithGenericServiceResponseData>
|
|
93
|
+
{
|
|
94
94
|
|
|
95
|
-
|
|
95
|
+
}
|
|
96
96
|
|
|
97
|
-
|
|
98
|
-
|
|
97
|
+
public class GetPlayersWithGoogleOperationResponse : CustomOperationResponse<MasterPlayerModels.GetPlayersWithGoogleResponseData>
|
|
98
|
+
{
|
|
99
99
|
|
|
100
|
-
|
|
100
|
+
}
|
|
101
101
|
|
|
102
|
-
|
|
103
|
-
|
|
102
|
+
public class GetPlayersWithGooglePlayGameServiceOperationResponse : CustomOperationResponse<MasterPlayerModels.GetPlayersWithGoogleResponseData>
|
|
103
|
+
{
|
|
104
104
|
|
|
105
|
-
|
|
105
|
+
}
|
|
106
106
|
|
|
107
|
-
|
|
108
|
-
|
|
107
|
+
public class GetPlayersWithGameCenterOperationResponse : CustomOperationResponse<MasterPlayerModels.GetPlayersWithGoogleResponseData>
|
|
108
|
+
{
|
|
109
109
|
|
|
110
|
-
|
|
110
|
+
}
|
|
111
111
|
|
|
112
|
-
|
|
113
|
-
|
|
112
|
+
public class GetPlayersWithSegmentOperationResponse : CustomOperationResponse<MasterPlayerModels.MasterPlayersWithUserIdResponseData>
|
|
113
|
+
{
|
|
114
114
|
|
|
115
|
-
|
|
115
|
+
}
|
|
116
116
|
|
|
117
|
-
|
|
118
|
-
|
|
117
|
+
public class GetPlayersWithTagOperationResponse : CustomOperationResponse<MasterPlayerModels.MasterPlayersWithUserIdResponseData>
|
|
118
|
+
{
|
|
119
119
|
|
|
120
|
-
|
|
120
|
+
}
|
|
121
121
|
|
|
122
|
-
|
|
123
|
-
|
|
122
|
+
public class GetSegmentOperationResponse : CustomOperationResponse<MasterPlayerModels.MasterPlayerResponseData>
|
|
123
|
+
{
|
|
124
124
|
|
|
125
|
-
|
|
125
|
+
}
|
|
126
126
|
|
|
127
|
-
|
|
128
|
-
|
|
127
|
+
public class GetStatisticsLeaderboardAroundPlayerOperationResponse : CustomOperationResponse<MasterPlayerModels.GetStatisticsLeaderboardResponseData>
|
|
128
|
+
{
|
|
129
129
|
|
|
130
|
-
|
|
130
|
+
}
|
|
131
131
|
|
|
132
|
-
|
|
133
|
-
|
|
132
|
+
public class GetStatisticsLeaderboardOperationResponse : CustomOperationResponse<MasterPlayerModels.GetStatisticsLeaderboardResponseData>
|
|
133
|
+
{
|
|
134
134
|
|
|
135
|
-
|
|
135
|
+
}
|
|
136
136
|
|
|
137
|
-
|
|
138
|
-
|
|
137
|
+
public class GetTagOperationResponse : CustomOperationResponse<MasterPlayerModels.MasterPlayerResponseData>
|
|
138
|
+
{
|
|
139
139
|
|
|
140
|
-
|
|
140
|
+
}
|
|
141
141
|
|
|
142
|
-
|
|
143
|
-
|
|
142
|
+
public class GetTsCreateOperationResponse : CustomOperationResponse<MasterPlayerModels.MasterPlayerResponseData>
|
|
143
|
+
{
|
|
144
144
|
|
|
145
|
-
|
|
145
|
+
}
|
|
146
146
|
|
|
147
|
-
|
|
148
|
-
|
|
147
|
+
public class GetTsLastLoginOperationResponse : CustomOperationResponse<MasterPlayerModels.MasterPlayerResponseData>
|
|
148
|
+
{
|
|
149
149
|
|
|
150
|
-
|
|
150
|
+
}
|
|
151
151
|
|
|
152
|
-
|
|
153
|
-
|
|
152
|
+
public class LinkAccountOperationResponse : CustomOperationResponse<MasterPlayerModels.EmptyResponseData>
|
|
153
|
+
{
|
|
154
154
|
|
|
155
|
-
|
|
155
|
+
}
|
|
156
156
|
|
|
157
|
-
|
|
158
|
-
|
|
157
|
+
public class LinkAndroidDeviceIdOperationResponse : CustomOperationResponse<MasterPlayerModels.EmptyResponseData>
|
|
158
|
+
{
|
|
159
159
|
|
|
160
|
-
|
|
160
|
+
}
|
|
161
161
|
|
|
162
|
-
|
|
163
|
-
|
|
162
|
+
public class LinkAppleOperationResponse : CustomOperationResponse<MasterPlayerModels.EmptyResponseData>
|
|
163
|
+
{
|
|
164
164
|
|
|
165
|
-
|
|
165
|
+
}
|
|
166
166
|
|
|
167
|
-
|
|
168
|
-
|
|
167
|
+
public class LinkCustomDeviceIdOperationResponse : CustomOperationResponse<MasterPlayerModels.EmptyResponseData>
|
|
168
|
+
{
|
|
169
169
|
|
|
170
|
-
|
|
170
|
+
}
|
|
171
171
|
|
|
172
|
-
|
|
173
|
-
|
|
172
|
+
public class LinkCustomIdOperationResponse : CustomOperationResponse<MasterPlayerModels.EmptyResponseData>
|
|
173
|
+
{
|
|
174
174
|
|
|
175
|
-
|
|
175
|
+
}
|
|
176
176
|
|
|
177
|
-
|
|
178
|
-
|
|
177
|
+
public class LinkEditorDeviceIdOperationResponse : CustomOperationResponse<MasterPlayerModels.EmptyResponseData>
|
|
178
|
+
{
|
|
179
179
|
|
|
180
|
-
|
|
180
|
+
}
|
|
181
181
|
|
|
182
|
-
|
|
183
|
-
|
|
182
|
+
public class LinkFacebookOperationResponse : CustomOperationResponse<MasterPlayerModels.EmptyResponseData>
|
|
183
|
+
{
|
|
184
184
|
|
|
185
|
-
|
|
185
|
+
}
|
|
186
186
|
|
|
187
|
-
|
|
188
|
-
|
|
187
|
+
public class LinkGenericServiceOperationResponse : CustomOperationResponse<MasterPlayerModels.EmptyResponseData>
|
|
188
|
+
{
|
|
189
189
|
|
|
190
|
-
|
|
190
|
+
}
|
|
191
191
|
|
|
192
|
-
|
|
193
|
-
|
|
192
|
+
public class LinkGoogleOperationResponse : CustomOperationResponse<MasterPlayerModels.EmptyResponseData>
|
|
193
|
+
{
|
|
194
194
|
|
|
195
|
-
|
|
195
|
+
}
|
|
196
196
|
|
|
197
|
-
|
|
198
|
-
|
|
197
|
+
public class LinkGooglePlayGameServiceOperationResponse : CustomOperationResponse<MasterPlayerModels.EmptyResponseData>
|
|
198
|
+
{
|
|
199
199
|
|
|
200
|
-
|
|
200
|
+
}
|
|
201
201
|
|
|
202
|
-
|
|
203
|
-
|
|
202
|
+
public class LinkGameCenterOperationResponse : CustomOperationResponse<MasterPlayerModels.EmptyResponseData>
|
|
203
|
+
{
|
|
204
204
|
|
|
205
|
-
|
|
205
|
+
}
|
|
206
206
|
|
|
207
|
-
|
|
208
|
-
|
|
207
|
+
public class LinkiOSDeviceIdOperationResponse : CustomOperationResponse<MasterPlayerModels.EmptyResponseData>
|
|
208
|
+
{
|
|
209
209
|
|
|
210
|
-
|
|
210
|
+
}
|
|
211
211
|
|
|
212
|
-
|
|
213
|
-
|
|
212
|
+
public class LinkLinuxDeviceIdOperationResponse : CustomOperationResponse<MasterPlayerModels.EmptyResponseData>
|
|
213
|
+
{
|
|
214
214
|
|
|
215
|
-
|
|
215
|
+
}
|
|
216
216
|
|
|
217
|
-
|
|
218
|
-
|
|
217
|
+
public class LinkMacOSDeviceIdOperationResponse : CustomOperationResponse<MasterPlayerModels.EmptyResponseData>
|
|
218
|
+
{
|
|
219
219
|
|
|
220
|
-
|
|
220
|
+
}
|
|
221
221
|
|
|
222
|
-
|
|
223
|
-
|
|
222
|
+
public class LinkWindowsDeviceIdOperationResponse : CustomOperationResponse<MasterPlayerModels.EmptyResponseData>
|
|
223
|
+
{
|
|
224
224
|
|
|
225
|
-
|
|
225
|
+
}
|
|
226
226
|
|
|
227
|
-
|
|
228
|
-
|
|
227
|
+
public class LinkWindowsPhoneDeviceIdOperationResponse : CustomOperationResponse<MasterPlayerModels.EmptyResponseData>
|
|
228
|
+
{
|
|
229
229
|
|
|
230
|
-
|
|
230
|
+
}
|
|
231
231
|
|
|
232
|
-
|
|
233
|
-
|
|
232
|
+
public class RemoveSegmentOperationResponse : CustomOperationResponse<MasterPlayerModels.EmptyResponseData>
|
|
233
|
+
{
|
|
234
234
|
|
|
235
|
-
|
|
235
|
+
}
|
|
236
236
|
|
|
237
|
-
|
|
238
|
-
|
|
237
|
+
public class RemoveTagOperationResponse : CustomOperationResponse<MasterPlayerModels.EmptyResponseData>
|
|
238
|
+
{
|
|
239
239
|
|
|
240
|
-
|
|
240
|
+
}
|
|
241
241
|
|
|
242
|
-
|
|
243
|
-
|
|
242
|
+
public class ResetAccountPasswordOperationResponse : CustomOperationResponse<MasterPlayerModels.EmptyResponseData>
|
|
243
|
+
{
|
|
244
244
|
|
|
245
|
-
|
|
245
|
+
}
|
|
246
246
|
|
|
247
|
-
|
|
248
|
-
|
|
247
|
+
public class SetAvatarOperationResponse : CustomOperationResponse<MasterPlayerModels.EmptyResponseData>
|
|
248
|
+
{
|
|
249
249
|
|
|
250
|
-
|
|
250
|
+
}
|
|
251
251
|
|
|
252
|
-
|
|
253
|
-
|
|
252
|
+
public class SetCountryCodeOperationResponse : CustomOperationResponse<MasterPlayerModels.EmptyResponseData>
|
|
253
|
+
{
|
|
254
254
|
|
|
255
|
-
|
|
255
|
+
}
|
|
256
256
|
|
|
257
|
-
|
|
258
|
-
|
|
257
|
+
public class SetCustomDataOperationResponse : CustomOperationResponse<MasterPlayerModels.MasterPlayerResponseData>
|
|
258
|
+
{
|
|
259
259
|
|
|
260
|
-
|
|
260
|
+
}
|
|
261
261
|
|
|
262
|
-
|
|
263
|
-
|
|
262
|
+
public class SetDisplayNameOperationResponse : CustomOperationResponse<MasterPlayerModels.EmptyResponseData>
|
|
263
|
+
{
|
|
264
264
|
|
|
265
|
-
|
|
265
|
+
}
|
|
266
266
|
|
|
267
|
-
|
|
268
|
-
|
|
267
|
+
public class SetEmailOperationResponse : CustomOperationResponse<MasterPlayerModels.EmptyResponseData>
|
|
268
|
+
{
|
|
269
269
|
|
|
270
|
-
|
|
270
|
+
}
|
|
271
271
|
|
|
272
|
-
|
|
273
|
-
|
|
272
|
+
public class SetPlayerBanOperationResponse : CustomOperationResponse<MasterPlayerModels.EmptyResponseData>
|
|
273
|
+
{
|
|
274
274
|
|
|
275
|
-
|
|
275
|
+
}
|
|
276
276
|
|
|
277
|
-
|
|
278
|
-
|
|
277
|
+
public class SetPlayerCurrencyOperationResponse : CustomOperationResponse<MasterPlayerModels.MasterPlayerResponseData>
|
|
278
|
+
{
|
|
279
279
|
|
|
280
|
-
|
|
280
|
+
}
|
|
281
281
|
|
|
282
|
-
|
|
283
|
-
|
|
282
|
+
public class SetPlayerDataOperationResponse : CustomOperationResponse<MasterPlayerModels.MasterPlayerResponseData>
|
|
283
|
+
{
|
|
284
284
|
|
|
285
|
-
|
|
285
|
+
}
|
|
286
286
|
|
|
287
|
-
|
|
288
|
-
|
|
287
|
+
public class SetPlayerStatisticsOperationResponse : CustomOperationResponse<MasterPlayerModels.MasterPlayerResponseData>
|
|
288
|
+
{
|
|
289
289
|
|
|
290
|
-
|
|
290
|
+
}
|
|
291
291
|
|
|
292
|
-
|
|
293
|
-
|
|
292
|
+
public class SetTagOperationResponse : CustomOperationResponse<MasterPlayerModels.EmptyResponseData>
|
|
293
|
+
{
|
|
294
294
|
|
|
295
|
-
|
|
295
|
+
}
|
|
296
296
|
|
|
297
|
-
|
|
298
|
-
|
|
297
|
+
public class SetTsLastLoginOperationResponse : CustomOperationResponse<MasterPlayerModels.EmptyResponseData>
|
|
298
|
+
{
|
|
299
299
|
|
|
300
|
-
|
|
300
|
+
}
|
|
301
301
|
|
|
302
|
-
|
|
303
|
-
|
|
302
|
+
public class UnlinkAccountOperationResponse : CustomOperationResponse<MasterPlayerModels.EmptyResponseData>
|
|
303
|
+
{
|
|
304
304
|
|
|
305
|
-
|
|
305
|
+
}
|
|
306
306
|
|
|
307
|
-
|
|
308
|
-
|
|
307
|
+
public class UnlinkAndroidDeviceIdOperationResponse : CustomOperationResponse<MasterPlayerModels.EmptyResponseData>
|
|
308
|
+
{
|
|
309
309
|
|
|
310
|
-
|
|
310
|
+
}
|
|
311
311
|
|
|
312
|
-
|
|
313
|
-
|
|
312
|
+
public class UnlinkAppleOperationResponse : CustomOperationResponse<MasterPlayerModels.EmptyResponseData>
|
|
313
|
+
{
|
|
314
314
|
|
|
315
|
-
|
|
315
|
+
}
|
|
316
316
|
|
|
317
|
-
|
|
318
|
-
|
|
317
|
+
public class UnlinkCustomDeviceIdOperationResponse : CustomOperationResponse<MasterPlayerModels.EmptyResponseData>
|
|
318
|
+
{
|
|
319
319
|
|
|
320
|
-
|
|
320
|
+
}
|
|
321
321
|
|
|
322
|
-
|
|
323
|
-
|
|
322
|
+
public class UnlinkCustomIdOperationResponse : CustomOperationResponse<MasterPlayerModels.EmptyResponseData>
|
|
323
|
+
{
|
|
324
324
|
|
|
325
|
-
|
|
325
|
+
}
|
|
326
326
|
|
|
327
|
-
|
|
328
|
-
|
|
327
|
+
public class UnlinkEditorDeviceIdOperationResponse : CustomOperationResponse<MasterPlayerModels.EmptyResponseData>
|
|
328
|
+
{
|
|
329
329
|
|
|
330
|
-
|
|
330
|
+
}
|
|
331
331
|
|
|
332
|
-
|
|
333
|
-
|
|
332
|
+
public class UnlinkFacebookOperationResponse : CustomOperationResponse<MasterPlayerModels.EmptyResponseData>
|
|
333
|
+
{
|
|
334
334
|
|
|
335
|
-
|
|
335
|
+
}
|
|
336
336
|
|
|
337
|
-
|
|
338
|
-
|
|
337
|
+
public class UnlinkGenericServiceOperationResponse : CustomOperationResponse<MasterPlayerModels.EmptyResponseData>
|
|
338
|
+
{
|
|
339
339
|
|
|
340
|
-
|
|
340
|
+
}
|
|
341
341
|
|
|
342
|
-
|
|
343
|
-
|
|
342
|
+
public class UnlinkGoogleOperationResponse : CustomOperationResponse<MasterPlayerModels.EmptyResponseData>
|
|
343
|
+
{
|
|
344
344
|
|
|
345
|
-
|
|
345
|
+
}
|
|
346
346
|
|
|
347
|
-
|
|
348
|
-
|
|
347
|
+
public class UnlinkGooglePlayGameServiceOperationResponse : CustomOperationResponse<MasterPlayerModels.EmptyResponseData>
|
|
348
|
+
{
|
|
349
349
|
|
|
350
|
-
|
|
350
|
+
}
|
|
351
351
|
|
|
352
|
-
|
|
353
|
-
|
|
352
|
+
public class UnlinkGameCenterOperationResponse : CustomOperationResponse<MasterPlayerModels.EmptyResponseData>
|
|
353
|
+
{
|
|
354
354
|
|
|
355
|
-
|
|
355
|
+
}
|
|
356
356
|
|
|
357
|
-
|
|
357
|
+
public class UnlinkiOSDeviceIdOperationResponse : CustomOperationResponse<MasterPlayerModels.EmptyResponseData>
|
|
358
|
+
{
|
|
359
|
+
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
public class UnlinkLinuxDeviceIdOperationResponse : CustomOperationResponse<MasterPlayerModels.EmptyResponseData>
|
|
363
|
+
{
|
|
364
|
+
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
public class UnlinkMacOSDeviceIdOperationResponse : CustomOperationResponse<MasterPlayerModels.EmptyResponseData>
|
|
368
|
+
{
|
|
369
|
+
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
public class UnlinkWindowsDeviceIdOperationResponse : CustomOperationResponse<MasterPlayerModels.EmptyResponseData>
|
|
373
|
+
{
|
|
374
|
+
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
public class UnlinkWindowsPhoneDeviceIdOperationResponse : CustomOperationResponse<MasterPlayerModels.EmptyResponseData>
|
|
378
|
+
{
|
|
379
|
+
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
public class GetCurrencyLeaderboardOperationResponse : CustomOperationResponse<MasterPlayerModels.GetCurrencyLeaderboardResponseData>
|
|
383
|
+
{
|
|
384
|
+
|
|
385
|
+
}
|
|
386
|
+
|
|
387
|
+
public class GetLastLoginLeaderboardOperationResponse : CustomOperationResponse<MasterPlayerModels.GetLastLoginLeaderboardResponseData>
|
|
388
|
+
{
|
|
389
|
+
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
public class GetCreateLeaderboardOperationResponse : CustomOperationResponse<MasterPlayerModels.GetCreateLeaderboardResponseData>
|
|
393
|
+
{
|
|
394
|
+
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
public class GetStatisticsLogOperationResponse : CustomOperationResponse<MasterPlayerModels.GetStatisticsLogResponseData>
|
|
398
|
+
{
|
|
399
|
+
|
|
400
|
+
}
|
|
401
|
+
|
|
402
|
+
public class GetCurrencyLogOperationResponse : CustomOperationResponse<MasterPlayerModels.GetStatisticsLogResponseData>
|
|
403
|
+
{
|
|
404
|
+
|
|
405
|
+
}
|
|
406
|
+
|
|
407
|
+
public class SendSocketOperationEventOperationResponse : CustomOperationResponse<MasterPlayerModels.EmptyResponseData>
|
|
408
|
+
{
|
|
409
|
+
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
public class SendEmailOperationResponse : CustomOperationResponse<MasterPlayerModels.EmptyResponseData>
|
|
413
|
+
{
|
|
414
|
+
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
public class AddPushNotificationOperationResponse : CustomOperationResponse<MasterPlayerModels.AddPushNotificationResponseData>
|
|
418
|
+
{
|
|
419
|
+
|
|
420
|
+
}
|
|
421
|
+
|
|
422
|
+
public class RemovePushNotificationOperationResponse : CustomOperationResponse<MasterPlayerModels.EmptyResponseData>
|
|
423
|
+
{
|
|
424
|
+
|
|
425
|
+
}
|
|
426
|
+
|
|
427
|
+
public class GetPushNotificationOperationResponse : CustomOperationResponse<MasterPlayerModels.MasterPlayerResponseData>
|
|
428
|
+
{
|
|
429
|
+
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
public class SendPushNotificationOperationResponse : CustomOperationResponse<MasterPlayerModels.SendPushNotificationResponseData>
|
|
433
|
+
{
|
|
434
|
+
|
|
435
|
+
}
|
|
436
|
+
|
|
437
|
+
}
|
|
358
438
|
|
|
359
439
|
}
|