EnrollOperationResult

public struct EnrollOperationResult : OpenSettingsOperationResult

The value that identifies a user obtained after enrolling the user in a specific authenticator.

  • The value (credential) entered by the user. The format must match the properties given in EnrollUserAction.format.

    Declaration

    Swift

    public let value: String
  • A confirmation of the provided value.

    Declaration

    Swift

    public let confirmationValue: String
  • Creates a new EnrollUserActionResult object.

    Declaration

    Swift

    public init(value: String, confirmationValue: String)

    Parameters

    value

    The value entered by the user.

    confirmationValue

    A confirmation of the new value.