mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2025-06-06 18:30:57 +00:00
19 lines
560 B
Java
19 lines
560 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 SplitPdfBySectionsRequest extends PDFFile {
|
|
@Schema(description = "Number of horizontal divisions for each PDF page", example = "2")
|
|
private int horizontalDivisions;
|
|
|
|
@Schema(description = "Number of vertical divisions for each PDF page", example = "2")
|
|
private int verticalDivisions;
|
|
}
|