Typed struct for a multi-currency account.
@type t() :: %ClearBank.Schemas.MultiCurrencyAccount{ balance: String.t() | nil, created_at: String.t() | nil, currency: String.t(), iban: String.t() | nil, id: String.t(), name: String.t(), status: String.t() | nil, type: String.t() | nil }
@spec from_map(map()) :: t()