@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) • 580 B
TypeScript
interface Field {
name: string;
width: number;
position: number;
required: boolean;
type: string;
value: string | number;
number?: boolean;
blank?: boolean;
}
interface BatchControls {
recordTypeCode: Field;
serviceClassCode: Field;
addendaCount: Field;
entryHash: Field;
totalDebit: Field;
totalCredit: Field;
companyIdentification: Field;
messageAuthenticationCode: Field;
reserved: Field;
originatingDFI: Field;
batchNumber: Field;
}
declare const BatchControls: BatchControls;
export default BatchControls;