Class ProductTypeChangeAttributeConstraintActionBuilder

java.lang.Object
com.commercetools.api.models.product_type.ProductTypeChangeAttributeConstraintActionBuilder
All Implemented Interfaces:
Builder<ProductTypeChangeAttributeConstraintAction>

public class ProductTypeChangeAttributeConstraintActionBuilder extends Object implements Builder<ProductTypeChangeAttributeConstraintAction>
ProductTypeChangeAttributeConstraintActionBuilder
Example to create an instance using the builder pattern

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