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

    Interface ExactLockConflictError

    Returned when a modification is already in progress for the exact combination of SKU and price scope fields for a Standalone Price. Retry the same request after 300 ms.

    The error is returned as a failed response to:
    - [Create StandalonePrice](ctp:api:endpoint:/{projectKey}/standalone-prices:POST)
    - [Update StandalonePrice by ID](ctp:api:endpoint:/{projectKey}/standalone-prices/{id}:POST)
    - [Update StandalonePrice by Key](ctp:api:endpoint:/{projectKey}/standalone-prices/key={key}:POST)
    
    interface ExactLockConflictError {
        channel?: ChannelResourceIdentifier;
        code: "ExactLockConflict";
        country?: string;
        currency: string;
        customerGroup?: CustomerGroupResourceIdentifier;
        message: string;
        recurrencePolicy?: RecurrencePolicyReference;
        sku: string;
        validFrom?: string;
        validUntil?: string;
        [key: string]: any;
    }

    Hierarchy (View Summary)

    Indexable

    • [key: string]: any
    Index

    Properties

    Channel for which the Standalone Price is valid.

    code: "ExactLockConflict"

    Error identifier.

    country?: string

    Country code of the geographic location.

    currency: string

    Currency code of the Standalone Price.

    CustomerGroup for which the Standalone Price is valid.

    message: string

    "Modification already in progress for the combination of SKU and price scope fields."

    recurrencePolicy?: RecurrencePolicyReference

    RecurrencePolicy that applies to the Standalone Price.

    sku: string

    SKU for which the modification conflict occurred.

    validFrom?: string

    Date and time (UTC) from which the Standalone Price is valid.

    validUntil?: string

    Date and time (UTC) until which the Standalone Price is valid.