Interface SearchDeactivatedError

All Superinterfaces:
ErrorObject
All Known Implementing Classes:
SearchDeactivatedErrorImpl

public interface SearchDeactivatedError extends ErrorObject

Returned when the indexing of Product information is deactivated in a Project.

To activate indexing, call Change Product Search Indexing Enabled and set enabled to true.


Example to create an instance using the builder pattern

     SearchDeactivatedError searchDeactivatedError = SearchDeactivatedError.builder()
             .message("{message}")
             .build()