Current section
Files
Jump to
Current section
Files
lib/yodlee/money.ex
defmodule Yodlee.Money do
@moduledoc """
Yodlee data structure for money.
"""
defstruct amount: nil, currency: nil
@type t :: %__MODULE__{amount: float, currency: String.t}
end