Amazon Selling Partner API (SP-API) SDK for TypeScript
    Preparing search index...

    Package information for a shipment in a fulfillment order.

    interface Package {
        deliveryTime?: string;
        packageId: string;
        shipmentItemIds?: string[];
        status?: string;
        tracking?: Tracking;
    }
    Index
    deliveryTime?: string

    Date timestamp in ISO 8601 date time format.

    packageId: string

    Identifies a package in a shipment.

    shipmentItemIds?: string[]

    The shipment item identifiers contained in this package.

    status?: string

    The current status of a package. Possible values: PROCESSING, IN_TRANSIT, DELAYED, OUT_FOR_DELIVERY, DELIVERED, UNDELIVERABLE, EXPIRED.

    tracking?: Tracking