Represents an AWD inbound order.

InboundOrder

interface InboundOrder {
    channelPlacedInboundShipments: InboundShipment[];
    createdAt: string;
    externalReferenceId?: string;
    orderId: string;
    orderStatus: InboundStatus;
    orderVersion: string;
    originAddress: Address;
    packagesToInbound: DistributionPackageQuantity[];
    preferences?: InboundPreferences;
    shipBy?: string;
    updatedAt?: string;
}

Properties

channelPlacedInboundShipments: InboundShipment[]

List of inbound shipments part of this order.

InboundOrder

createdAt: string

Date when this order was created.

InboundOrder

externalReferenceId?: string

Reference ID that can be used to correlate the order with partner resources.

InboundOrder

orderId: string

Inbound order ID.

InboundOrder

orderStatus: InboundStatus

InboundOrder

orderVersion: string

Inbound order version.

InboundOrder

originAddress: Address

InboundOrder

packagesToInbound: DistributionPackageQuantity[]

List of packages to be inbounded.

InboundOrder

preferences?: InboundPreferences

InboundOrder

shipBy?: string

Date by which this order will be shipped.

InboundOrder

updatedAt?: string

Date when this order was last updated.

InboundOrder