Contains information pertaining to the placement of the contents of an inbound plan and the related costs.

PlacementOption

interface PlacementOption {
    discounts: Incentive[];
    expiration?: string;
    fees: Incentive[];
    placementOptionId: string;
    shipmentIds: string[];
    status: string;
}

Properties

discounts: Incentive[]

Discount for the offered option.

PlacementOption

expiration?: string

The expiration date of the placement option. In ISO 8601 datetime format with pattern yyyy-MM-ddTHH:mm:ss.sssZ.

PlacementOption

fees: Incentive[]

The fee for the offered option.

PlacementOption

placementOptionId: string

The identifier of a placement option. A placement option represents the shipment splits and destinations of SKUs.

PlacementOption

shipmentIds: string[]

Shipment ids.

PlacementOption

status: string

The status of a placement option. Possible values: OFFERED, ACCEPTED, EXPIRED.

PlacementOption