CalculatedProductCost
The ProductCost type represents cost information for a product.
type CalculatedProductCost {
costType: Int!
unitPriceExclusive: String!
description: String!
vatPercentage: Decimal!
calculatedPrice: Price!
calculatedAmount: Decimal!
}
Fields
CalculatedProductCost.costType ● Int! non-null scalar
Type identifier for this cost item. This is used to classify the costType.
CalculatedProductCost.unitPriceExclusive ● String! non-null scalar
This is the exclusive price for every unit. A unit could be for example a day or kWh or m3.
CalculatedProductCost.description ● String! non-null scalar
Description of this cost item.
CalculatedProductCost.vatPercentage ● Decimal! non-null scalar
VAT percentage. Percentages is between 0 and 1. So 21% is represented as 0.21.
CalculatedProductCost.calculatedPrice ● Price! non-null object
The total price for this cost item.
CalculatedProductCost.calculatedAmount ● Decimal! non-null scalar
Calculated amount is the volume or quantity for this cost item. For example, this could be the number of days or kWh or m3.
Member Of
CalculatedProduct object