currencies v0.2.1 Currencies.Currency
A struct that keeps information about the currency.
It contains the following fields:
:code
- the currency code:name
- the name of the curency:display
- the displayable currency symbol:representations
- contains html and unicode decimal representations for the currency symbol:minor_unit
- contains sub-init or minor unit information about the currency:central_bank
- contains information about the central bank governing the currency:nicknames
- contains nicknames for the currency:users
- contains places or countries using the currency
Summary
Types
t :: %Currencies.Currency{central_bank: Currencies.CentralBank.t, code: String.t, display: String.t, minor_unit: Currencies.MinorUnit.t, name: String.t, nicknames: [String.t], representations: Currencies.Representations.t, users: [String.t]}