Interface ProductTypeChangeInputHintAction

All Superinterfaces:
ProductTypeUpdateAction, ResourceUpdateAction<ProductTypeUpdateAction>

public interface ProductTypeChangeInputHintAction extends ProductTypeUpdateAction

Updates the inputHint of an AttributeDefinition.


Example to create an instance using the builder pattern

     ProductTypeChangeInputHintAction productTypeChangeInputHintAction = ProductTypeChangeInputHintAction.builder()
             .attributeName("{attributeName}")
             .newValue(TextInputHint.SINGLE_LINE)
             .build()