@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
30 lines (26 loc) • 658 B
TypeScript
interface Field {
name: string;
width: number;
position: number;
required: boolean;
type: string;
value: string | number;
blank?: boolean;
}
interface BatchHeaders {
recordTypeCode: Field;
serviceClassCode: Field;
companyName: Field;
companyDiscretionaryData: Field;
companyIdentification: Field;
standardEntryClassCode: Field;
companyEntryDescription: Field;
companyDescriptiveDate: Field;
effectiveEntryDate: Field;
settlementDate: Field;
originatorStatusCode: Field;
originatingDFI: Field;
batchNumber: Field;
}
declare const BatchHeaders: BatchHeaders;
export default BatchHeaders;