Class SetStoreModeChangeBuilder

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

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

     SetStoreModeChange setStoreModeChange = SetStoreModeChange.builder()
             .change("{change}")
             .previousValue(BusinessUnitStoreMode.EXPLICIT)
             .nextValue(BusinessUnitStoreMode.EXPLICIT)
             .build()
 
  • Constructor Details

    • SetStoreModeChangeBuilder

      public SetStoreModeChangeBuilder()
  • Method Details