Skip to content

Commit

Permalink
v1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pblanchardie committed Oct 24, 2023
1 parent cc36373 commit 3efc1d4
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Written in Java 8 using JAXB and [iban4j](https://github.com/arturmkrtchyan/iban
<dependency>
<groupId>io.inisos.bank4j</groupId>
<artifactId>bank4j</artifactId>
<version>1.1.1</version>
<version>1.2.0</version>
</dependency>
```

Expand Down Expand Up @@ -74,7 +74,9 @@ class MyApp {
// transfer
CreditTransfer creditTransfer = Bank.creditTransferSepa(
debtor,
transactions);
transactions,
LocalDate.now().plusDays(2) // optional requested execution date, defaults to tomorrow
);

// export to string
String formattedOutput = creditTransfer.marshal(true); // true: enables formatting
Expand Down

0 comments on commit 3efc1d4

Please sign in to comment.