Interface AttributeDefinitionTypeConflictError

All Superinterfaces:
ErrorObject
All Known Implementing Classes:
AttributeDefinitionTypeConflictErrorImpl

Returned when the type is different for an AttributeDefinition using the same name in multiple Product Types.

The error is returned as a failed response to the Create ProductType request.


Example to create an instance using the builder pattern

     AttributeDefinitionTypeConflictError attributeDefinitionTypeConflictError = AttributeDefinitionTypeConflictError.builder()
             .message("{message}")
             .conflictingProductTypeId("{conflictingProductTypeId}")
             .conflictingProductTypeName("{conflictingProductTypeName}")
             .conflictingAttributeName("{conflictingAttributeName}")
             .build()