AuthSignInResult

public struct AuthSignInResult
  • Informs whether the user is signedIn or not.

    When this value is false, it means that there are more steps to follow for the signIn flow. Check nextStep to understand the next flow. If isSignedIn is true, signIn flow has been completed.

    Declaration

    Swift

    public var isSignedIn: Bool { get }
  • Shows the next step required to complete the signIn flow.

    Declaration

    Swift

    public var nextStep: AuthSignInStep
  • Declaration

    Swift

    public init(nextStep: AuthSignInStep)