Packages

Tipalti integration library for Elixir, including Payee and Payer SOAP API clients and iFrame integration helpers.

Current section

Files

Jump to
tipalti lib tipalti.ex
Raw

lib/tipalti.ex

defmodule Tipalti do
@moduledoc """
Tipalti integration library for Elixir.
This library contains the following:
* `Tipalti.API.Payee` - Payee SOAP API client
* `Tipalti.API.Payer` - Payer SOAP API client
* `Tipalti.IFrame.InvoiceHistory` - Invoice History iFrame integration helper
* `Tipalti.IFrame.PaymentsHistory` - Payments History iFrame integration helper
* `Tipalti.IFrame.SetupProcess` - Setup Process iFrame integration helper
"""
@typedoc """
An `idap` is a string representing the id of a payee in Tipalti.
"""
@type idap :: String.t()
@typedoc """
Key/Value pair used for custom fields.
"""
@type key_value_pair :: %{key: String.t(), value: String.t()}
end