diff --git a/docs/index.md b/docs/index.md index 91ecede..51d1236 100644 --- a/docs/index.md +++ b/docs/index.md @@ -13,7 +13,7 @@ Written in Java 8 using JAXB and [iban4j](https://github.com/arturmkrtchyan/iban io.inisos.bank4j bank4j - 1.1.1 + 1.2.0 ``` @@ -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