ProductBundleItem¶
The ProductBundleItem object represents a children's of a bundle.
classDiagram
ProductBundleItem --> ProductBundle
ProductBundleItem --> Variant
class ProductBundle{
}
class Variant{
}
class ProductBundleItem{
int id
int order
int quantity
ProductBundle bundle
Variant variant
OptionsList StockProductOptions
OptionsList NotStockProductOptions
}
Properties¶
Attribute name | Type | Description |
---|---|---|
id | int |
The id of the bundle item. |
order | int |
Order of the bundle item. |
quantity | float |
Quantity of the bundle item. |
bundle | ProductBundle |
The ProductBundle object that representing information about the bundle it is included. |
variant | ProductVariant |
The ProductVariant object represents a variant that is related to the bundle item. |
stockProductOptions | OptionsList |
The OptionsList represents stock product options. |
notStockProductOptions | OptionsList |
The OptionsList represents not stock product options. |