Class ProductSelectionUpdateBuilder

java.lang.Object
com.commercetools.api.models.product_selection.ProductSelectionUpdateBuilder
All Implemented Interfaces:
Builder<ProductSelectionUpdate>

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

     ProductSelectionUpdate productSelectionUpdate = ProductSelectionUpdate.builder()
             .version(0.3)
             .plusActions(actionsBuilder -> actionsBuilder)
             .build()