2026-03-23 15:17:42 +07:00
|
|
|
package ru.soune.nocopy.dto.complaint;
|
|
|
|
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
|
|
|
import lombok.AllArgsConstructor;
|
|
|
|
|
import lombok.Builder;
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
import lombok.NoArgsConstructor;
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
@Data
|
|
|
|
|
@Builder
|
|
|
|
|
@NoArgsConstructor
|
|
|
|
|
@AllArgsConstructor
|
|
|
|
|
public class ComplaintResponse {
|
|
|
|
|
@JsonProperty("id")
|
|
|
|
|
private Long id;
|
|
|
|
|
|
|
|
|
|
@JsonProperty("status")
|
|
|
|
|
private String status;
|
|
|
|
|
|
|
|
|
|
@JsonProperty("complaint_text")
|
|
|
|
|
private String complaintText;
|
|
|
|
|
|
|
|
|
|
@JsonProperty("violation_id")
|
|
|
|
|
private Long violationId;
|
|
|
|
|
|
|
|
|
|
@JsonProperty("email")
|
|
|
|
|
private String email;
|
|
|
|
|
|
|
|
|
|
@JsonProperty("created_at")
|
|
|
|
|
private String createdAt;
|
|
|
|
|
|
|
|
|
|
@JsonProperty("updated_at")
|
|
|
|
|
private String updatedAt;
|
2026-03-25 15:55:16 +07:00
|
|
|
|
|
|
|
|
@JsonProperty("not_moderated")
|
|
|
|
|
private Boolean notModerated;
|
2026-04-22 12:38:05 +07:00
|
|
|
|
|
|
|
|
@JsonProperty("file_id")
|
|
|
|
|
private String fileId;
|
2026-03-23 15:17:42 +07:00
|
|
|
}
|