MonetaryValue
Definition of a monetary price, for example a price on a order row, product etc
type MonetaryValue {
priceExcludingTax: Float!
currency: Currency!
tax: MonetaryTax!
}
Fields
priceExcludingTax ● Float!
The price/value of the monetary value, excluding tax
currency ● Currency!
The currency of the monetary value
tax ● MonetaryTax!
The total price/value of the monetary value, including tax
Example
{
"currency": {
"code": "USD",
"rate": 11.355,
"prefix": "$"
},
"tax": {}
}