OnboardingResult

public enum OnboardingResult

OnboardingResult specifies the result of an operation related to Onboarding.

  • success: The operation successfully finished. The context in the parameter can contain modified information.
  • failed: The operation failed. The parameter contains the reason of the failure.
  • The operation successfully finished. The context in the parameter can contain modified information.

    Declaration

    Swift

    case success(OnboardingContext)
  • The operation failed. The parameter contains the reason of the failure

    Declaration

    Swift

    case failed(Error)