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

    Interface VariantBulkUpdateItem

    Identifies a single Variant to be updated in a bulk update request. Provide either id or key to identify the Variant.

    interface VariantBulkUpdateItem {
        id?: string;
        key?: string;
        version?: number;
    }
    Index
    id?: string

    Unique identifier of the Variant to update. Either id or key must be provided.

    key?: string

    User-defined unique identifier of the Variant to update. Either id or key must be provided.

    version?: number

    Expected version of the Variant. Required when the versionControl query parameter is On (the default). If the version does not match, a ConcurrentModification error is returned for that item. Not required when versionControl=Off.