Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aledsz/payment-messenger
ISO-8583 TLV messages with Ecto validation
https://github.com/aledsz/payment-messenger
Last synced: 3 days ago
JSON representation
ISO-8583 TLV messages with Ecto validation
- Host: GitHub
- URL: https://github.com/aledsz/payment-messenger
- Owner: aleDsz
- License: apache-2.0
- Created: 2021-07-18T04:03:00.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-07-25T19:49:37.000Z (over 3 years ago)
- Last Synced: 2024-05-21T04:13:07.379Z (6 months ago)
- Language: Elixir
- Homepage:
- Size: 25.4 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Payment Messenger (Work in Progress)
[![continuous integration](https://github.com/aleDsz/payment-messenger/actions/workflows/elixir.yml/badge.svg?branch=main)](https://github.com/aleDsz/payment-messenger/actions/workflows/elixir.yml)
[![codecov](https://codecov.io/gh/aleDsz/payment-messenger/branch/main/graph/badge.svg?token=5VU8NOU0YQ)](https://codecov.io/gh/aleDsz/payment-messenger)Transfer data with [ISO-8583](https://wikipedia.org/wiki/ISO_8583) message pattern with Ecto schemas and validations
without any need to implement the message generation.This library will return the string from given `Message` and vice-versa.
## Installation
```elixir
def deps do
[
{:payment_messenger, git: "aleDsz/payment-messenger"}
]
end
```