-
Notifications
You must be signed in to change notification settings - Fork 1
shipping.Interface.ShippingRecord
tgreyuk edited this page Mar 16, 2025
·
7 revisions
github-wiki-example / shipping / ShippingRecord
Defined in: shipping.ts:12
Interface representing a shipping record. Defines the structure for storing and tracking information about shipments.
Property | Type | Description | Defined in |
---|---|---|---|
address
|
string |
The destination address where the order should be delivered. This is crucial for logistics and routing. | shipping.ts:26 |
orderId
|
string |
Identifier for the order being shipped. Links the shipment to a specific customer order. | shipping.ts:21 |
shipmentId
|
string |
Unique identifier for the shipment. This is used to track and reference the shipment throughout the shipping process. | shipping.ts:16 |
status
|
string |
Current status of the shipment (e.g., "Pending", "Shipped", "Delivered"). Provides updates on the shipment progress. | shipping.ts:31 |