Interface EnumValueIsUsedError

All Superinterfaces:
ErrorObject
All Known Implementing Classes:
EnumValueIsUsedErrorImpl

public interface EnumValueIsUsedError extends ErrorObject

Returned when an enum value cannot be removed from an Attribute as it is being used by a Product.

The error is returned as a failed response to the Remove EnumValues from AttributeDefinition update action.


Example to create an instance using the builder pattern

     EnumValueIsUsedError enumValueIsUsedError = EnumValueIsUsedError.builder()
             .message("{message}")
             .build()