Outcome

public struct Outcome

The outcome to send back to the SDK after verifying the user.

  • The value entered by the user and to be verified by the authenticator, or nil if the user verification is not performed by the application. User verification is performed by the OS for the Biometric authenticators, thus the value should only be populated for the AppPinAuthenticator.

    Declaration

    Swift

    public let value: String?
  • Creates a new Outcome object.

    Declaration

    Swift

    public init(value: String? = nil)

    Parameters

    value

    The value entered by the user and to be verified by the authenticator,if needed.