IBundle
No description
interface IBundle {
id: Float!
comboId: Float @deprecated
name: String!
description: String
discount: Float
condition: BundleCondition
price: BundlePrice
items: [BundleItem!]
}
Fields
IBundle.id
● Float!
non-null scalar
The bundles primary identifier
IBundle.comboId
● Float
deprecated scalar
DEPRECATEDThe comboId is deprecated and will be removed in the future. Please use the id field instead.
[DEPRECATED] The bundles identifier for Propeller internal use
IBundle.name
● String!
non-null scalar
The name for this bundle.
IBundle.description
● String
scalar
The description for this bundle.
IBundle.discount
● Float
scalar
The discount percentage this bundle.
IBundle.condition
● BundleCondition
enum
The discount condition for this bundle. Discount can be applied for Extra Products (EP) or All Products (ALL).
IBundle.price
● BundlePrice
object
The bundle prices.
IBundle.items
● [BundleItem!]
list object
Items for this bundle.
Implemented By
Bundle
object