MoneyDisplayFormat
Used to change the format when displaying money as a formatted string
enum MoneyDisplayFormat {
  ACCOUNTING
  DEFAULT
}
Values
MoneyDisplayFormat.ACCOUNTING
The accounting format, where negative numbers will be wrapped in parentheses instead of prefixed with a - sign.
MoneyDisplayFormat.DEFAULT
The default format, where negative numbers are prefixed with a - sign.