namespace API.Contracts.Neutrino.Enums; public enum AuthenticationResultCode { /// /// Indicates that authentication is incomplete and only the associated data is returned. /// /// This value is typically used when launching the game with no account, in which data to authenticate is not provided. AuthenticationIncomplete, /// /// Indicates that authentication was successful. /// AuthenticationSuccessful, /// /// Indicates that authentication failed due to incorrect credentials. /// AuthenticationFailedWrongCredentials, /// /// Indicates that the parameters provided to the operation are invalid. /// InvalidParameters }