Represents an AWD outbound shipment.

OutboundShipment

interface OutboundShipment {
    createdAt?: string;
    destinationAddress: Address;
    orderId: string;
    originAddress: Address;
    shipmentId: string;
    shipmentPackageQuantities?: DistributionPackageQuantity[];
    shipmentProductQuantities?: ProductQuantity[];
    shipmentStatus: OutboundShipmentStatus;
    updatedAt?: string;
}

Properties

createdAt?: string

Timestamp when the shipment was created.

OutboundShipment

destinationAddress: Address

OutboundShipment

orderId: string

Outbound order ID this outbound shipment belongs to.

OutboundShipment

originAddress: Address

OutboundShipment

shipmentId: string

Unique shipment ID.

OutboundShipment

shipmentPackageQuantities?: DistributionPackageQuantity[]

Specific distribution packages that are included in the context of this shipment.

OutboundShipment

shipmentProductQuantities?: ProductQuantity[]

Specific product units that are included in the context of this shipment.

OutboundShipment

shipmentStatus: OutboundShipmentStatus

OutboundShipment

updatedAt?: string

Timestamp when the shipment was updated.

OutboundShipment