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
9productSize: ProductSizeInput!
10
11quantity: Int!
12
13unitPrice: MonetaryValueInput
14
15customsType: CustomsType
16
17customsTax: Float
18}