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

    Container in the shipment.

    interface Container {
        containerReferenceId: string;
        containerType?: "PACKAGE";
        dimensions: Dimensions;
        items: ContainerItem[];
        value: Currency;
        weight: Weight;
    }
    Index

    Properties

    containerReferenceId: string

    An identifier for the container. This must be unique within all the containers in the same shipment.

    containerType?: "PACKAGE"

    The type of physical container being used. (always 'PACKAGE')

    dimensions: Dimensions
    items: ContainerItem[]

    A list of the items in the container.

    value: Currency
    weight: Weight