ImporterInputRequestType

public enum ImporterInputRequestType
extension ImporterInputRequestType: Equatable

Type of user input requested by the importer

  • Normal text, with suggestions (optional)

    Declaration

    Swift

    case text([String])
  • Secrect, should not be visible if the user enters it

    Declaration

    Swift

    case secret
  • otp

    one time passcase, can offer the use auto fill from text or similr

    Declaration

    Swift

    case otp
  • a questions which the user can answer with yes or no

    Declaration

    Swift

    case bool
  • a choice betweeen multiple options

    Declaration

    Swift

    case choice([String])
  • Declaration

    Swift

    public static func == (lhs: `Self`, rhs: `Self`) -> Bool