INPUT_OBJECT

ReturnCreateInput

link GraphQL Schema definition

1input ReturnCreateInput {
2
3# Exactly one input field should be provided
4shipment: ShipmentInput!
5
6lines: [ReturnLineCreateInput!]!
7
8# Exactly one input field should be provided
9returnStockActionPolicy: StockPolicyActionInput!
10
11# Exactly one input field should be provided
12handlingCost: ReturnCostPolicyInput
13
14# Exactly one input field should be provided
15shippingCost: ReturnCostPolicyInput
16
17# Exactly one input field should be provided
18voucherValue: ReturnCostPolicyInput
19
20returnCost: MonetaryValueInput
21
22# Will show up in order history entry
23comment: String
24
25createdAt: DateTimeTz
26
27# Assign an external ID to reference this object by it later
28externalId: String
29}

link Required by