Interface ProductVariantTailoringAddedMessagePayload

Generated after a successful Add ProductVariant Tailoring update action.

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

Properties

Reference to the tailored Product.

productKey?: string

key of the tailored Product.

The Store to which the Product Tailoring belongs.

type: "ProductVariantTailoringAdded"

The ProductVariantTailoring that was added to the ProductTailoring.

variantId: number

id of the ProductVariant added to the Tailoring.