Selling Partner API SDK for JavaScript
    Preparing search index...

    Represents an AWD outbound shipment.

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

    Properties

    createdAt?: string

    Timestamp when the shipment was created.

    destinationAddress: Address
    orderId: string

    Outbound order ID this outbound shipment belongs to.

    originAddress: Address
    shipmentId: string

    Unique shipment ID.

    shipmentPackageQuantities?: DistributionPackageQuantity[]

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

    shipmentProductQuantities?: ProductQuantity[]

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

    shipmentStatus: OutboundShipmentStatus
    updatedAt?: string

    Timestamp when the shipment was updated.