object ShipmentLineItem
Fields
| Field | Type | Description |
|---|---|---|
id | String | Public API ID for this identifiable. |
legacy_id | BigInt | Numeric legacy ID for this identifiable; use only where legacy IDs are required. |
line_item_id | String | Public API line item ID that identifies the related record. |
shipment_id | String | Public API shipment ID that identifies the related record. |
shipping_label_id | String | Public API shipping label ID that identifies the related record. |
quantity | Int | Quantity as a whole-unit count. |
line_item | LineItem | Line item associated with this shipment line item. |
lot | Lot | DEPRECATED Use lots instead. Lot associated with this shipment line item. |
lots | [ShippedLineItemLot] | List of lots for this shipment line item. |
Referenced By
- ShipmentLineItemEdge Type
Example
{
"id": "UmVjb3JkOjEyMzQ=",
"legacy_id": 1234,
"line_item_id": "U2hpcG1lbnRMaW5lSXRlbToxMjM0",
"shipment_id": "U2hpcG1lbnRMaW5lSXRlbToxMjM0",
"shipping_label_id": "U2hpcG1lbnRMaW5lSXRlbToxMjM0",
"quantity": 2,
"line_item": {sku: "BLUE-TEE-M", quantity: 2},
"lot": {sku: "BLUE-TEE-M", quantity: 2},
"lots": [[{sku: "BLUE-TEE-M", quantity: 2}]]
}