GraphQL OBJECT
PriceFormat
link Definition
- type PriceFormat {
- # Symbol of the currency.
- : String
- # Amount of digits for decimals.
- : Int
- # Separator for decimals.
- : String
- # Pattern for negative prices.
- : String
- # Pattern for positive prices.
- : String
- # Separator for thousand.
- : String
- # Seperator for thousand.
- : String @deprecated( reason: "Use thousandsSeparator instead" )
- # Seperator for decimals.
- : String @deprecated( reason: "Use decimalSeparator instead" )
- }