@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
23 lines (19 loc) • 466 B
TypeScript
type Field = {
name: string;
width: number;
position: number;
required: boolean;
type: string;
value: string;
number?: boolean;
blank?: boolean;
};
interface EntryAddendaFields {
recordTypeCode: Field;
addendaTypeCode: Field;
paymentRelatedInformation: Field;
addendaSequenceNumber: Field;
entryDetailSequenceNumber: Field;
}
declare const EntryAddendaFields: EntryAddendaFields;
export default EntryAddendaFields;