Files
no-copy/src/main/java/ru/soune/nocopy/dto/violation/ViolationNotionRequest.java
T

23 lines
452 B
Java
Raw Normal View History

2026-03-17 16:35:27 +07:00
package ru.soune.nocopy.dto.violation;
2026-04-22 12:16:37 +07:00
import com.fasterxml.jackson.annotation.JsonProperty;
2026-03-17 16:35:27 +07:00
import lombok.Data;
@Data
public class ViolationNotionRequest {
2026-04-22 12:16:37 +07:00
@JsonProperty("token")
2026-03-17 16:35:27 +07:00
private String token;
2026-04-22 12:16:37 +07:00
@JsonProperty("action")
2026-03-17 16:35:27 +07:00
private String action;
2026-04-22 12:16:37 +07:00
@JsonProperty("violation_id")
2026-03-17 22:23:19 +07:00
private Long violationId;
2026-04-22 12:16:37 +07:00
@JsonProperty("notion_id")
2026-03-17 16:35:27 +07:00
private Long notionId;
2026-04-22 12:16:37 +07:00
@JsonProperty("message")
2026-03-17 22:23:19 +07:00
private String message;
2026-03-17 16:35:27 +07:00
}