The fees method described in section 3.7 returns a response that contains the sum of all fees. This sum is of type money can be negative.
The simple datatype money is defined in section 2.8 to be a string matching the regular expression [0-9]+\.[0-9][0-9] [A-Z][A-Z][A-Z], thus not allowing for negative values.
The
fees
method described in section 3.7 returns a response that contains the sum of all fees. This sum is of typemoney
can be negative.The simple datatype money is defined in section 2.8 to be a string matching the regular expression
[0-9]+\.[0-9][0-9] [A-Z][A-Z][A-Z]
, thus not allowing for negative values.