@@ -1,43 +0,0 @@
|
||||
package ru.soune.nocopy.dto.monitoring;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||
import lombok.Builder;
|
||||
import lombok.Data;
|
||||
import ru.soune.nocopy.entity.monitoring.SearchEngine;
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
@Data
|
||||
@Builder
|
||||
public class ViolationResponse {
|
||||
|
||||
@JsonProperty("id")
|
||||
private String id;
|
||||
|
||||
@JsonProperty("file_id")
|
||||
private String fileId;
|
||||
|
||||
@JsonProperty("file_name")
|
||||
private String fileName;
|
||||
|
||||
@JsonProperty("found_url")
|
||||
private String foundUrl;
|
||||
|
||||
@JsonProperty("page_url")
|
||||
private String pageUrl;
|
||||
|
||||
@JsonProperty("page_title")
|
||||
private String pageTitle;
|
||||
|
||||
@JsonProperty("host")
|
||||
private String host;
|
||||
|
||||
@JsonProperty("search_engine")
|
||||
private SearchEngine searchEngine;
|
||||
|
||||
@JsonProperty("found_at")
|
||||
private LocalDateTime foundAt;
|
||||
|
||||
@JsonProperty("is_new")
|
||||
private boolean isNew;
|
||||
}
|
||||
Reference in New Issue
Block a user