Skip to main content

ShippingLine

No description

type ShippingLine {
fulfilledQuantity: Int!
fulfillmentLines: [FulfillmentLine!]
id: ID
orderLine: OrderLine
quantity: Int!
shipping: Shipping
unfulfilledQuantity: Int!
}

Fields

ShippingLine.fulfilledQuantity ● Int! non-null scalar

The quantity the warehouse has fulfilled — the sum of the fulfilment lines. 0 until the fulfilment is confirmed.

ShippingLine.fulfillmentLines ● [FulfillmentLine!] list object

The fulfilment lines declared by the warehouse for this shipping line — one per stock batch or serial number. Empty until the fulfilment is confirmed.

ShippingLine.id ● ID scalar

The unique identifier of the record.

ShippingLine.orderLine ● OrderLine object

The order line the shipping line refers to.

ShippingLine.quantity ● Int! non-null scalar

The quantity of the order line dispatched by this shipping.

ShippingLine.shipping ● Shipping object

The shipping the line belongs to.

ShippingLine.unfulfilledQuantity ● Int! non-null scalar

The quantity not fulfilled by the warehouse — the shipping line quantity minus the fulfilled one, set when the fulfilment is confirmed. 0 until then.

Member Of

FulfillmentLine object ● Shipping object