Skip to content

Commit

Permalink
fix cpa code example
Browse files Browse the repository at this point in the history
  • Loading branch information
dangowans committed Jul 31, 2024
1 parent fc8e96e commit 1a2bbab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ npm install @cityssm/eft-generator

```javascript
import fs from 'node:fs'
import { EFTGenerator, CPA_CODES } from '@cityssm/eft-generator'
import { EFTGenerator } from '@cityssm/eft-generator'

const eftGenerator = new EFTGenerator({
originatorId: '0123456789',
Expand All @@ -32,7 +32,7 @@ eftGenerator.addDebitTransaction({
bankInstitutionNumber: '111',
bankTransitNumber: '22222',
bankAccountNumber: '333333333',
cpaCode: CPA_CODES.PropertyTaxes,
cpaCode: 385, // Property Taxes
amount: 1234.56,
payeeName: 'Test Property Owner'
})
Expand Down

0 comments on commit 1a2bbab

Please sign in to comment.