GraphQL OBJECT

PriceFormat

link Definition

  • type PriceFormat {
  • # Symbol of the currency.
  • currencySymbol: String
  • # Amount of digits for decimals.
  • decimalDigits: Int
  • # Separator for decimals.
  • decimalSeparator: String
  • # Pattern for negative prices.
  • negativeCurrencyPattern: String
  • # Pattern for positive prices.
  • positiveCurrencyPattern: String
  • # Separator for thousand.
  • thousandsSeparator: String
  • # Seperator for thousand.
  • thousandsSeperator: String @deprecated( reason: "Use thousandsSeparator instead" )
  • # Seperator for decimals.
  • decimalSeperator: String @deprecated( reason: "Use decimalSeparator instead" )
  • }

link Required by