Class ProductTypeUpdateBuilder

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

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

     ProductTypeUpdate productTypeUpdate = ProductTypeUpdate.builder()
             .version(0.3)
             .plusActions(actionsBuilder -> actionsBuilder)
             .build()
 
  • Constructor Details

    • ProductTypeUpdateBuilder

      public ProductTypeUpdateBuilder()
  • Method Details