INPUT_OBJECT

OrderLineCreateInput

link GraphQL Schema definition

1input OrderLineCreateInput {
2
3display: DisplayInput!
4
5# Exactly one input field should be provided
6productSize: ProductSizeInput!
7
8quantity: Int!
9
10discountValue: DiscountValueInput
11
12comment: String
13
14# If set, it holds the absolute url where this item can be seen
15productExternalUrl: String
16
17# Original price taken from the pricelist, might include or exclude taxes depending on the param
18unitOriginalPrice: MonetaryValueInput
19
20unitPrice: MonetaryValueInput!
21
22taxInPercent: Float
23
24taxOutPercent: Float
25
26category: CategoryInput
27
28taxGroup: TaxGroupInput
29
30# Exactly one input field should be provided
31deliveryWindow: DeliveryWindowInput
32}