View Source Appwrite.Types.Currency (appwrite v0.1.9)

Represents a currency with details like symbol, name, and code.

Fields

  • symbol (String.t): Currency symbol.
  • name (String.t): Currency name.
  • symbol_native (String.t): Native currency symbol.
  • decimal_digits (integer): Number of decimal digits.
  • rounding (float): Currency digit rounding.
  • code (String.t): ISO 4217 currency code.
  • name_plural (String.t): Plural name of the currency.

Summary

Types

t()

@type t() :: %Appwrite.Types.Currency{
  code: String.t(),
  decimal_digits: integer(),
  name: String.t(),
  name_plural: String.t(),
  rounding: float(),
  symbol: String.t(),
  symbol_native: String.t()
}