SignInResult

enum SignInResult
extension SignInResult : Sendable

The result of the a SignIn operation.

  • SignIn was successful; accountID is the account ID of the newly signed in user.

    Declaration

    Swift

    case success(accountID: AccountID)
  • SignIn was not completed and sign in should continue on to the next Identity provider.

    Declaration

    Swift

    case `continue`
  • SignIn was cancelled and should not be retried.

    Declaration

    Swift

    case cancelled