package com.release11.klaus.model; import lombok.*; import org.springframework.format.annotation.DateTimeFormat; import org.springframework.lang.Nullable; import java.time.LocalDateTime; @Data @Builder @ToString @NoArgsConstructor @AllArgsConstructor public class Event { @DateTimeFormat(pattern = "yyyy-MM-ddTHH:mm:ss") private LocalDateTime dateTimeStamp; @Nullable private String interfaceName; @Nullable private String clientUUID; @Nullable private Integer messageId; private String thread; private String level; @Nullable private String message; }