Interface AttributeDefinitionAlreadyExistsError

All Superinterfaces:
ErrorObject
All Known Implementing Classes:
AttributeDefinitionAlreadyExistsErrorImpl

Returned when the name of the AttributeDefinition conflicts with an existing Attribute.

The error is returned as a failed response to the Create ProductType request or Change AttributeDefinition Name update action.


Example to create an instance using the builder pattern

     AttributeDefinitionAlreadyExistsError attributeDefinitionAlreadyExistsError = AttributeDefinitionAlreadyExistsError.builder()
             .message("{message}")
             .conflictingProductTypeId("{conflictingProductTypeId}")
             .conflictingProductTypeName("{conflictingProductTypeName}")
             .conflictingAttributeName("{conflictingAttributeName}")
             .build()