Class ProductDiscountChangeNameActionBuilder

java.lang.Object
com.commercetools.api.models.product_discount.ProductDiscountChangeNameActionBuilder
All Implemented Interfaces:
Builder<ProductDiscountChangeNameAction>

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

     ProductDiscountChangeNameAction productDiscountChangeNameAction = ProductDiscountChangeNameAction.builder()
             .name(nameBuilder -> nameBuilder)
             .build()