https://github.com/jerebtw/sepa-deno
This is a library to generate SEPA xml files
https://github.com/jerebtw/sepa-deno
sepa xml
Last synced: 6 days ago
JSON representation
This is a library to generate SEPA xml files
- Host: GitHub
- URL: https://github.com/jerebtw/sepa-deno
- Owner: jerebtw
- License: mit
- Created: 2022-11-16T20:32:45.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-22T14:38:23.000Z (over 3 years ago)
- Last Synced: 2025-10-20T16:53:13.145Z (9 months ago)
- Topics: sepa, xml
- Language: TypeScript
- Homepage: https://deno.land/x/sepa
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Sepa
This is a library to generate SEPA xml files.
```text
Note that this library has not been tested 100%
If you find a problem, please report it
```
## Documentation
You can find the [Docs](https://deno.land/x/sepa/mod.ts) here
## Example
```ts
import { generateSepaXML } from "https://deno.land/x/sepa/mod.ts";
generateSepaXML({
id: "1",
creationDate: new Date(2022, 5, 16, 0, 0),
initiatorName: "Test",
positions: [
{
name: "Test",
iban: "",
bic: "",
requestedExecutionDate: new Date(2022, 5, 16, 0, 0),
id: "123",
payments: [
{
id: "Payment 1",
amount: 123,
iban: "",
bic: "",
name: "Test",
remittanceInformation: "WOW 1",
},
{
id: "Payment 2",
amount: 123.83,
iban: "",
bic: "",
name: "Test",
remittanceInformation: "WOW 2",
},
{
id: "Payment 3",
amount: 69,
iban: "",
bic: "",
name: "Test",
remittanceInformation: "WOW 3",
},
],
},
],
});
```
## License
[MIT](https://choosealicense.com/licenses/mit/)