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

    A package to be shipped through a shipping service offering.

    interface Package {
        charges?: ChargeComponent[];
        dimensions: Dimensions;
        insuredValue: Currency;
        isHazmat?: boolean;
        items: Item[];
        packageClientReferenceId: string;
        sellerDisplayName?: string;
        weight: Weight;
    }
    Index

    Properties

    charges?: ChargeComponent[]

    A list of charges based on the shipping service charges applied on a package.

    dimensions: Dimensions
    insuredValue: Currency
    isHazmat?: boolean

    When true, the package contains hazardous materials. Defaults to false.

    items: Item[]

    A list of items.

    packageClientReferenceId: string

    A client provided unique identifier for a package being shipped. This value should be saved by the client to pass as a parameter to the getShipmentDocuments operation.

    sellerDisplayName?: string

    The seller name displayed on the label.

    weight: Weight