|
@@ -91,6 +91,24 @@ public class VideoReviewResp {
|
|
|
public static class EvidenceDTO {
|
|
|
@JSONField(name = "text")
|
|
|
private String text;
|
|
|
+
|
|
|
+ @JSONField(name = "thumbnail")
|
|
|
+ private String thumbnail;
|
|
|
+ @JSONField(name = "location")
|
|
|
+ private LocationDTO location;
|
|
|
+
|
|
|
+ @NoArgsConstructor
|
|
|
+ @Data
|
|
|
+ public static class LocationDTO {
|
|
|
+ @JSONField(name = "leftOffsetInPixel")
|
|
|
+ private Integer leftOffsetInPixel;
|
|
|
+ @JSONField(name = "topOffsetInPixel")
|
|
|
+ private Integer topOffsetInPixel;
|
|
|
+ @JSONField(name = "widthInPixel")
|
|
|
+ private Integer widthInPixel;
|
|
|
+ @JSONField(name = "heightInPixel")
|
|
|
+ private Integer heightInPixel;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|