Class ChangeTransactionStateChangeBuilder

java.lang.Object
com.commercetools.history.models.change.ChangeTransactionStateChangeBuilder
All Implemented Interfaces:
Builder<ChangeTransactionStateChange>

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

     ChangeTransactionStateChange changeTransactionStateChange = ChangeTransactionStateChange.builder()
             .change("{change}")
             .previousValue(TransactionState.INITIAL)
             .nextValue(TransactionState.INITIAL)
             .transaction(transactionBuilder -> transactionBuilder)
             .build()