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

    A package that is created to ship one or more of a shipment's line items.

    interface Package {
        dimensions: PackageDimensions;
        hazmatLabels?: string[];
        id: string;
        packageHandlingRequirements?: PackagePackageHandlingRequirementsEnum;
        packageLineItems: PackageLineItem[];
        status?: PackageStatusEnum;
        weight: Weight;
    }
    Index

    Properties

    dimensions: PackageDimensions
    hazmatLabels?: string[]

    The optional list of HAZMAT labels applied to the package.

    id: string

    An ID that uniquely identifies a package within a shipment.

    packageHandlingRequirements?: PackagePackageHandlingRequirementsEnum

    Whether the package requires standard handling or extra care.

    packageLineItems: PackageLineItem[]

    The list of line items in a package.

    The current status of the package.

    weight: Weight