diff --git a/src/main/java/xyz/thewhitedog9487/WebAPI/Data/Entity/AccessLog.java b/src/main/java/xyz/thewhitedog9487/WebAPI/Data/Entity/AccessLog.java index 89c3ddb..c42a932 100644 --- a/src/main/java/xyz/thewhitedog9487/WebAPI/Data/Entity/AccessLog.java +++ b/src/main/java/xyz/thewhitedog9487/WebAPI/Data/Entity/AccessLog.java @@ -48,6 +48,13 @@ public class AccessLog{ @JsonProperty("HttpMethod") String HttpMethod; + + @JsonProperty("Protocol") + String Protocol; + + @JsonProperty("ProtocolVersion") + String ProtocolVersion; + @JsonProperty("URL") String URL; @@ -59,4 +66,12 @@ public class AccessLog{ String Header; @JsonProperty("Timestamp") - Instant Timestamp; \ No newline at end of file + Instant Timestamp; + + @JsonProperty("ResponseStatusCode") + Integer ResponseStatusCode; + + @JsonProperty("ResponseBody") + @Column(columnDefinition = "text") + String ResponseBody; +} \ No newline at end of file