Interface ProductTypeChangeAttributeConstraintAction

All Superinterfaces:
ProductTypeUpdateAction, ResourceUpdateAction<ProductTypeUpdateAction>

public interface ProductTypeChangeAttributeConstraintAction extends ProductTypeUpdateAction

Updates the attributeConstraint of an AttributeDefinition. For now only following changes are supported: SameForAll to None and Unique to None.


Example to create an instance using the builder pattern

     ProductTypeChangeAttributeConstraintAction productTypeChangeAttributeConstraintAction = ProductTypeChangeAttributeConstraintAction.builder()
             .attributeName("{attributeName}")
             .newValue(AttributeConstraintEnumDraft.NONE)
             .build()