Announcing the Appwrite OSS Fund, Learn More! 🤑
Docs

Currency Object

Properties

Name Type Description
symbol string

Currency symbol.

name string

Currency name.

symbolNative string

Currency native symbol.

decimalDigits integer

Number of decimal digits.

rounding number

Currency digit rounding.

code string

Currency code in ISO 4217-1 three-character format.

namePlural string

Currency plural name

Examples

JSON

{
    "symbol": "$",
    "name": "US dollar",
    "symbolNative": "$",
    "decimalDigits": 2,
    "rounding": 0,
    "code": "USD",
    "namePlural": "US dollars"
}