Interface ProductVariantTailoringRemovedMessagePayload

Generated after a successful Remove ProductVariant Tailoring update action.

interface ProductVariantTailoringRemovedMessagePayload {
    product: ProductReference;
    productKey?: string;
    store: StoreKeyReference;
    type: "ProductVariantTailoringRemoved";
    variant: ProductVariantTailoring;
    variantId: number;
}

Properties

Reference to the Product the Product Tailoring belongs to.

productKey?: string

key of the tailored Product.

The Store to which the Product Tailoring belongs.

type: "ProductVariantTailoringRemoved"

The ProductVariantTailoring that was removed from the ProductTailoring.

variantId: number

id of the ProductVariant removed from the Tailoring.