INPUT_OBJECT

PurchaseOrderDeliveryLinkedLineCreateInput

link GraphQL Schema definition

1input PurchaseOrderDeliveryLinkedLineCreateInput {
2
3# Exactly one input field should be provided
4orderLine: OrderLineInput!
5
6# Exactly one input field should be provided
7productVariant: ProductVariantInput!
8
9# Only product size ID is supported here
10#
11# Exactly one input field should be provided
12productSize: ProductSizeInput!
13
14quantity: Int!
15
16unitPrice: MonetaryValueInput
17
18customsType: CustomsType
19
20customsTax: Float
21}