Class SetAssetKeyChangeBuilder

java.lang.Object
com.commercetools.history.models.change.SetAssetKeyChangeBuilder
All Implemented Interfaces:
io.vrap.rmf.base.client.Builder<SetAssetKeyChange>

public class SetAssetKeyChangeBuilder extends Object implements io.vrap.rmf.base.client.Builder<SetAssetKeyChange>
SetAssetKeyChangeBuilder
Example to create an instance using the builder pattern

     SetAssetKeyChange setAssetKeyChange = SetAssetKeyChange.builder()
             .change("{change}")
             .previousValue("{previousValue}")
             .nextValue("{nextValue}")
             .asset(assetBuilder -> assetBuilder)
             .build()