Interface SetAssetCustomFieldChange

All Superinterfaces:
Change
All Known Implementing Classes:
SetAssetCustomFieldChangeImpl

public interface SetAssetCustomFieldChange extends Change

Change triggered by the following update actions:

  • Set Asset CustomField on Categories.
  • Set Asset CustomField on Products.

Example to create an instance using the builder pattern

     SetAssetCustomFieldChange setAssetCustomFieldChange = SetAssetCustomFieldChange.builder()
             .change("{change}")
             .name("{name}")
             .customTypeId("{customTypeId}")
             .asset(assetBuilder -> assetBuilder)
             .build()