@gradientedge/commercetools-utils
    Preparing search index...

    Interface ProductTailoringSetExternalImagesAction

    Either variantId or sku is required to reference a ProductVariant or Variant (BETA) that exists. Produces the ProductTailoringImagesSet Message.

    interface ProductTailoringSetExternalImagesAction {
        action: "setImages";
        images?: Image[];
        sku?: string;
        staged?: boolean;
        variantId?: number;
    }

    Hierarchy (View Summary)

    Index
    action: "setImages"
    images?: Image[]

    Images of the tailored ProductVariant or Variant (BETA).

    Don't provide this field if you want to remove all images from the tailored ProductVariant or Variant ([BETA](/offering/compatibility#public-beta)).
    Set to `[]` (empty) if you want to hide all images of the original ProductVariant or Variant ([BETA](/offering/compatibility#public-beta)) on the tailored ProductVariant or Variant ([BETA](/offering/compatibility#public-beta)).
    
    sku?: string

    The sku of the tailored ProductVariant or Variant (BETA) to update.

    staged?: boolean

    Whether only the staged images is updated. If false, both the current and staged images are updated.

    variantId?: number

    The id of the tailored ProductVariant or Variant (BETA) to update.