UNPKG

@fcgs/filerr-nach

Version:

nACH is a highly customizable Node.js module exposing a high & low-level API for generating ACH files for use within the ACH network

29 lines (25 loc) 567 B
interface Field { name: string; width: number; position: number; required: boolean; type: 'numeric' | 'alphanumeric'; value: string | number; blank?: boolean; number?: boolean; } interface EntryFields { recordTypeCode: Field; transactionCode: Field; receivingDFI: Field; checkDigit: Field; DFIAccount: Field; amount: Field; idNumber: Field; individualName: Field; discretionaryData: Field; addendaId: Field; traceNumber: Field; } declare const EntryFields: EntryFields; export default EntryFields;