Packages

An Elixir library for interacting with the Bold API, providing seamless integration to manage payments efficiently.

Current section

Files

Jump to
bold lib types tax.ex
Raw

lib/types/tax.ex

defmodule Bold.Types.Tax do
@moduledoc """
Tax struct.
"""
@type t :: %__MODULE__{
type: String.t(),
base: float(),
value: float()
}
@enforce_keys []
defstruct [:type, :base, :value]
end