PINCredentialFormat

public struct PINCredentialFormat : CredentialFormat

The formatting properties for a PIN.

  • The format of PIN characters.

    Declaration

    Swift

    public let pinInputType: PINInputType
  • The minimum number of characters to form a valid PIN.

    Declaration

    Swift

    public let minLength: Int
  • The maximum number of characters to form a valid PIN.

    Declaration

    Swift

    public let maxLength: Int
  • ** ONLY FOR AUTOMATED TESTING PURPOSES; DO NOT USE IN PRODUCTION CODE **

    Creates a new PINFormat object.

    Declaration

    Swift

    public init(pinInputType: PINInputType, minLength: Int, maxLength: Int)

    Parameters

    charset

    The format of PIN characters.

    minLength

    The minimum number of characters to form a valid PIN.

    maxLength

    The maximum number of characters to form a valid PIN.

  • Possible PIN character sets.

    See more

    Declaration

    Swift

    public enum PINInputType