Interface OrderCustomLineItemDiscountSetMessagePayload

Generated after a successful recalculation of a Discount on a Custom Line Item.

interface OrderCustomLineItemDiscountSetMessagePayload {
    customLineItemId: string;
    discountedPricePerQuantity: DiscountedLineItemPriceForQuantity[];
    taxedPrice?: TaxedItemPrice;
    type: "OrderCustomLineItemDiscountSet";
}

Properties

customLineItemId: string

Unique identifier for the Custom Line Item.

discountedPricePerQuantity: DiscountedLineItemPriceForQuantity[]

Array of DiscountedLineItemPriceForQuantity after the Discount recalculation.

taxedPrice?: TaxedItemPrice

TaxedItemPrice of the Custom Line Item after the Discount recalculation.

type: "OrderCustomLineItemDiscountSet"

Generated using TypeDoc