LeviLamina
Loading...
Searching...
No Matches
PlayFabStatus.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Social {
6
7enum class PlayFabStatus : int {
8 Success = 0,
9 Fail = 1,
10 DuplicateEmail = 2,
11 DuplicateUsername = 3,
12 InvalidEmail = 4,
13 InvalidUsername = 5,
14 InvalidPassword = 6,
15 AccountAlreadyLinkedToAPlayFabAccount = 7,
16 InvalidEmailOrPassword = 8,
17 PlayFabAccountAlreadyLinkedToThisAccountType = 9,
18 ProfileVersionMismatch = 10,
19 AccountNotLinked = 11,
20 CustomIdNotLinked = 12,
21 APIClientRequestRateLimitExceeded = 13,
22 APIConcurrentRequestLimitExceeded = 14,
23 ConcurrentEditError = 15,
24 DataUpdateRateExceeded = 16,
25 DownstreamServiceUnavailable = 17,
26 OverLimit = 18,
27 ServiceUnavailable = 19,
28 ConnectionTimeout = 20,
29 ConnectionRefused = 21,
30 SocketError = 22,
31 SignedRequestNotAllowed = 23,
32 GettingXboxLiveAuthTokenFailed = 24,
33 GettingTitleKeyFailed = 25,
34 GettingPSNAuthTokenFailed = 26,
35 GettingNintendoAuthTokenFailed = 27,
36 DoNotRetry = 1000,
37 AccountBanned = 1000,
38 AccountDeleted = 1001,
39 AccountNotFound = 1002,
40 APIRequestsDisableForTitle = 1003,
41 InvalidContentType = 1004,
42 InvalidParams = 1005,
43 InvalidRequest = 1006,
44 InvalidTitleId = 1007,
45 NotAuthenticated = 1008,
46 NotAuthorized = 1009,
47 NotAuthorizedByTitle = 1010,
48 ProfileDoesNotExist = 1011,
49 TitleDeleted = 1012,
50 PlayerSecretAlreadyConfigured = 1013,
51 EmptyPlayFabIdentityId = 1014,
52 NotSignedInPsnIdentity = 1016,
53 NotSupportAnonymousAuth = 1017,
54 InvalidAPIEndpoint = 1021,
55 AlreadyLinkedPSN = 1022,
56 AlreadyLinkedMSA = 1023,
57 SignInAttemptedWhenIdentityNull = 1024,
58 LinkAttemptedWhenIdentityNull = 1025,
59 InvalidXUIDOrRestrictedAccount = 1026,
60 NotSignedInNintendoIdentity = 1027,
61 NotSignedInXblIdentity = 1028,
62 UnknownError = 2000,
63};
64
65}