Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
480 B
Java
Raw Normal View History

2023-09-09 18:21:55 +01:00
package stirling.software.SPDF.model.api;
import io.swagger.v3.oas.annotations.media.Schema;
2023-12-30 19:11:27 +00:00
2023-09-09 18:21:55 +01:00
import lombok.Data;
2023-09-10 09:24:20 +01:00
import lombok.EqualsAndHashCode;
2023-09-09 18:21:55 +01:00
import lombok.NoArgsConstructor;
2023-12-30 19:11:27 +00:00
2023-09-09 18:21:55 +01:00
@Data
@NoArgsConstructor
2023-09-10 09:24:20 +01:00
@EqualsAndHashCode(callSuper = true)
2023-09-09 18:21:55 +01:00
public class PDFComparison extends PDFFile {
2023-12-30 19:11:27 +00:00
2023-09-09 18:21:55 +01:00
@Schema(
description = "The comparison type, accepts Greater, Equal, Less than",
allowableValues = {"Greater", "Equal", "Less"})
private String comparator;
}