Getting started Community Training Tutorials Documentation APIs, AI & Tools
public enum SimpleNotificationAction implements NotificationActionDefinition<SimpleNotificationAction> {
NEW_EVENT(DataType.fromType(Integer.class)),
FINISHED_EVENT(DataType.fromType(SimpleObject.class));
private final DataType dataType;
SimpleNotificationAction(DataType dataType) {
this.dataType = dataType;
}
@Override
public DataType getDataType() {
return dataType;
}
}



