IdentityResult

enum IdentityResult
extension IdentityResult : Sendable

The result of an Identity operation.

  • The operation was successful; accountID is the account ID of the user.

    Declaration

    Swift

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

    Declaration

    Swift

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

    Declaration

    Swift

    case cancelled