Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fileheader: fixup docs to mention 0 pad prefix #521

Merged
merged 1 commit into from
Apr 16, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions fileHeader.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,10 @@ type FileHeader struct {

// ImmediateOrigin contains the Routing Number of the ACH Operator or sending
// point that is sending the file. The ach file format specifies a 10 character field
// which can begin with a blank space or '1' in the first position, followed by the four digit
// which can begin with a blank space, 0 or 1 in the first position, followed by the four digit
// Federal Reserve Routing Symbol, the four digit ABA Institution Identifier, and the Check
// Digit (bTTTTAAAAC). ImmediateOriginField() will append the blank space to the routing number.
// Digit (bTTTTAAAAC). ImmediateOriginField() will prepend a 0 to the routing number to match
// the field size.
ImmediateOrigin string `json:"immediateOrigin"`

// FileCreationDate is the date on which the file is prepared by an ODFI (ACH input files)
Expand Down