Skip to content

Commit

Permalink
https://docs.microsoft.com/en-us/gaming/playfab/release-notes/#200421
Browse files Browse the repository at this point in the history
  • Loading branch information
PlayFabJenkinsBot committed Apr 21, 2020
2 parents 4f3a4ae + 8daac2c commit 0bdbabd
Show file tree
Hide file tree
Showing 18 changed files with 1,418 additions and 40 deletions.
11 changes: 11 additions & 0 deletions code/include/playfab/PlayFabAdminDataModels.h
Original file line number Diff line number Diff line change
Expand Up @@ -5388,6 +5388,7 @@ namespace PlayFab
GenericErrorCodesPartyRequestsThrottledFromRateLimiter,
GenericErrorCodesXboxServiceTooManyRequests,
GenericErrorCodesNintendoSwitchNotEnabledForTitle,
GenericErrorCodesRequestMultiplayerServersThrottledFromRateLimiter,
GenericErrorCodesMatchmakingEntityInvalid,
GenericErrorCodesMatchmakingPlayerAttributesInvalid,
GenericErrorCodesMatchmakingQueueNotFound,
Expand Down Expand Up @@ -7955,6 +7956,11 @@ namespace PlayFab
output = Json::Value("NintendoSwitchNotEnabledForTitle");
return;
}
if (input == GenericErrorCodes::GenericErrorCodesRequestMultiplayerServersThrottledFromRateLimiter)
{
output = Json::Value("RequestMultiplayerServersThrottledFromRateLimiter");
return;
}
if (input == GenericErrorCodes::GenericErrorCodesMatchmakingEntityInvalid)
{
output = Json::Value("MatchmakingEntityInvalid");
Expand Down Expand Up @@ -10858,6 +10864,11 @@ namespace PlayFab
output = GenericErrorCodes::GenericErrorCodesNintendoSwitchNotEnabledForTitle;
return;
}
if (inputStr == "RequestMultiplayerServersThrottledFromRateLimiter")
{
output = GenericErrorCodes::GenericErrorCodesRequestMultiplayerServersThrottledFromRateLimiter;
return;
}
if (inputStr == "MatchmakingEntityInvalid")
{
output = GenericErrorCodes::GenericErrorCodesMatchmakingEntityInvalid;
Expand Down
14 changes: 13 additions & 1 deletion code/include/playfab/PlayFabClientApi.h

Large diffs are not rendered by default.

Loading

0 comments on commit 0bdbabd

Please sign in to comment.