mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2026-09-03 05:10:16 +03:00
* fix * extarct images * langs * logging * cuke fix --------- Co-authored-by: a <a>
17 lines
451 B
Java
17 lines
451 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 = true)
|
|
public class PDFExtractImagesRequest extends PDFWithImageFormatRequest {
|
|
|
|
@Schema(
|
|
description =
|
|
"Boolean to enable/disable the saving of duplicate images, true to enable duplicates")
|
|
private boolean allowDuplicates;
|
|
}
|