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

    Interface DuplicatePriceKeyError

    Returned when a Price key conflicts with an existing key.

    Keys of Embedded Prices must be unique per ProductVariant.
    
    interface DuplicatePriceKeyError {
        code: "DuplicatePriceKey";
        conflictingPrice: Price;
        message: string;
        [key: string]: any;
    }

    Hierarchy (View Summary)

    Indexable

    • [key: string]: any
    Index

    Properties

    code: "DuplicatePriceKey"

    Error identifier.

    conflictingPrice: Price

    Conflicting Embedded Price.

    message: string

    "Duplicate price key: $priceKey. The price key must be unique per variant."