UnauthenticatedReason

public enum UnauthenticatedReason : Equatable

A value representing a reason related to the authentication state.

Cases

  • Indicates that the current authentication has no reason listed in AuthenticationState.Reason.

    Declaration

    Swift

    case `default`
  • Indicates that the current authentication failed.

    The associated value contains the error related to the failed reason.

    Declaration

    Swift

    case failed(orangeChatError: OrangeChatError)