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()
 
  • Field Details

    • CHANGE_INPUT_HINT

      static final String CHANGE_INPUT_HINT
      discriminator value for ProductTypeChangeInputHintAction
      See Also:
  • Method Details