Skip to content

OfferingProductInput

Payload for an offering product

Fields

_destroy · Boolean · If true, the offering product will be deleted
deduct_main_quantity · Boolean · If true, the main quantity will be deducted
id · ID · The ID of the offering product
price · String · The price of the offering product
product · ProductInput · The offering product
quantity · String · The quantity of the offering product
taxable · Boolean · If true, the offering product is taxable

Used By

Definition

"""
Payload for an offering product
"""
input OfferingProductInput {
"""
If true, the offering product will be deleted
"""
_destroy: Boolean
"""
If true, the main quantity will be deducted
"""
deduct_main_quantity: Boolean
"""
The ID of the offering product
"""
id: ID
"""
The price of the offering product
"""
price: String
"""
The offering product
"""
product: ProductInput
"""
The quantity of the offering product
"""
quantity: String
"""
If true, the offering product is taxable
"""
taxable: Boolean
}