Class SetAuthenticationModeChangeBuilder

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

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

     SetAuthenticationModeChange setAuthenticationModeChange = SetAuthenticationModeChange.builder()
             .change("{change}")
             .previousValue(AuthenticationMode.PASSWORD)
             .nextValue(AuthenticationMode.PASSWORD)
             .build()