TotalPriceBreakdown
No description
type TotalPriceBreakdown {
productID: String!
categoryIndex: Int!
categoryID: Int!
quantity: Int!
price: Price
}
Fields
productID ● String!
Product ID
categoryIndex ● Int!
Position index of the category in the bundle, starting at position 1
categoryID ● Int!
Category ID is the unique identifier of the bundle category in the database
quantity ● Int!
Quantity of the product in the bundle
price ● Price
The price the base product will get
Example
{
"price": {
"regularPrice": {
"currency": {
"code": "USD",
"rate": 11.355,
"prefix": "$"
},
"tax": {}
},
"appliedCampaign": {
"info": {
"description": [
{
"language": "EN",
"value": "String"
}
],
"timeLimit": {
"from": "2024-05-03T11:52:33Z"
}
}
}
}
}