OBJECT
OfferingProduct
Offering product type
link GraphQL Schema definition
- type OfferingProduct {
- # If true the quantity of the main product will be reduced, otherwise changing
- # offering_product.quantity won't affect on the main product
- Boolean :
- # The unique identifier of the offering product
- ID :
- # ID of related offering
- ID :
- # The price of included product. If offering_product.price == nil, the price will
- # be equal to product.price
- String :
- # A product included into the offering
- Product :
- # The quantity of included products
- String :
- # Tax amount if product has tax rate
- String :
- # If true tax will be added to the price
- Boolean :
- }