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

    Interface ProductVariantTailoringDraft

    Either id or sku is required to reference a ProductVariant or Variant (BETA) that exists.

    interface ProductVariantTailoringDraft {
        assets?: Asset[];
        attributes?: ProductTailoringAttribute[];
        id?: number;
        images?: Image[];
        sku?: string;
    }
    Index
    assets?: Asset[]

    Media assets of the tailored Product Variant.

    Attributes of the tailored Product Variant according to the respective AttributeDefinition. If provided, these Attributes are selectively merged into the attributes of the corresponding ProductVariant or Variant (BETA):

    - If the ProductVariant or Variant ([BETA](/offering/compatibility#public-beta)) contains an Attribute with the same `name`, its `value` is overwritten. Otherwise, the Attribute and its value are added to the ProductVariant or Variant ([BETA](/offering/compatibility#public-beta)).
    
    id?: number

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

    images?: Image[]

    Images of the tailored Product Variant.

    sku?: string

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