Interface GraphQLValidityLockConflictError

All Superinterfaces:
GraphQLErrorObject

public interface GraphQLValidityLockConflictError extends GraphQLErrorObject

Returned when a modification is already in progress for the combination of SKU and price scope fields (but potentially different validity period) for a Standalone Price. Retry the same request after 300 ms.

The error is returned as a failed response to:


Example to create an instance using the builder pattern

     GraphQLValidityLockConflictError graphQLValidityLockConflictError = GraphQLValidityLockConflictError.builder()
             .sku("{sku}")
             .currency("{currency}")
             .build()