ach-node-sdk
    Preparing search index...

    Interface FileControl

    FileControl

    interface FileControl {
        batchCount: number;
        blockCount: number;
        entryAddendaCount: number;
        entryHash: number;
        id?: string;
        lineNumber?: number;
        totalCredit: number;
        totalDebit: number;
    }
    Index
    batchCount: number

    Count of Batches in the File

    FileControl

    blockCount: number

    Total number of records in the file (include all headers and trailer) divided by 10 (This number must be evenly divisible by 10. If not, additional records consisting of all 9's are added to the file after the initial '9' record to fill out the block 10.)

    FileControl

    entryAddendaCount: number

    Total detail and addenda records in the file

    FileControl

    entryHash: number

    Calculated in the same manner as the batch total but includes total from entire file

    FileControl

    id?: string

    File ID

    FileControl

    lineNumber?: number

    Line number at which the record appears in the file.

    FileControl

    totalCredit: number

    Accumulated Batch credit totals within the file.

    FileControl

    totalDebit: number

    Accumulated Batch debit totals within the file.

    FileControl