Class TextLineItemValueBuilder

java.lang.Object
com.commercetools.history.models.change_value.TextLineItemValueBuilder
All Implemented Interfaces:
Builder<TextLineItemValue>

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

     TextLineItemValue textLineItemValue = TextLineItemValue.builder()
             .id("{id}")
             .name(nameBuilder -> nameBuilder)
             .build()