mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2026-09-03 05:10:16 +03:00
20 lines
603 B
Java
20 lines
603 B
Java
package stirling.software.SPDF.model.api;
|
|||
|
|
|
||
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||
|
|
|
||
|
|
import lombok.Data;
|
||
|
|
import lombok.EqualsAndHashCode;
|
||
|
|
|
||
|
|
@Data
|
||
|
|
@EqualsAndHashCode(callSuper = false)
|
||
|
|
public class SplitPdfByChaptersRequest extends PDFFile {
|
||
|
|
@Schema(description = "Whether to include Metadata or not", example = "true")
|
||
|
|
private Boolean includeMetadata;
|
||
|
|
|
||
|
|
@Schema(description = "Whether to allow duplicates or not", example = "true")
|
||
|
|
private Boolean allowDuplicates;
|
||
|
|
|
||
|
|
@Schema(description = "Maximum bookmark level required", example = "2")
|
||
|
|
private Integer bookmarkLevel;
|
||
|
|
}
|