Added missing JsonIgnore after refactoring

This commit is contained in:
dshvaika 2025-08-28 12:33:42 +03:00
parent 87a27e95ef
commit 02bf78e681

View File

@ -15,8 +15,11 @@
*/
package org.thingsboard.server.common.data.cf.configuration;
import com.fasterxml.jackson.annotation.JsonIgnore;
public interface ScheduleSupportedCalculatedFieldConfiguration extends CalculatedFieldConfiguration {
@JsonIgnore
boolean isScheduledUpdateEnabled();
int getScheduledUpdateIntervalSec();