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

    Interface DuplicatePriceScopeError

    Returned when a Price scope conflicts with an existing one during an Update Product request.

    Every Price of a Product Variant must have a distinct combination of currency, Customer Group, country, and Channel that constitute the scope of a Price.
    
    interface DuplicatePriceScopeError {
        code: "DuplicatePriceScope";
        conflictingPrice: Price;
        message: string;
        [key: string]: any;
    }

    Hierarchy (View Summary)

    Indexable

    • [key: string]: any
    Index

    Properties

    code: "DuplicatePriceScope"

    Error identifier.

    conflictingPrice: Price

    Conflicting Embedded Price.

    message: string

    "Duplicate price scope: $priceScope. The combination of currency, country, customerGroup and channel must be unique for each price of a product variant."