mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2025-06-23 16:05:09 +00:00
19 lines
480 B
Java
19 lines
480 B
Java
package stirling.software.SPDF.model.api;
|
|
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
|
|
import lombok.Data;
|
|
import lombok.EqualsAndHashCode;
|
|
import lombok.NoArgsConstructor;
|
|
|
|
@Data
|
|
@NoArgsConstructor
|
|
@EqualsAndHashCode(callSuper = true)
|
|
public class PDFComparison extends PDFFile {
|
|
|
|
@Schema(
|
|
description = "The comparison type, accepts Greater, Equal, Less than",
|
|
allowableValues = {"Greater", "Equal", "Less"})
|
|
private String comparator;
|
|
}
|