2023-09-09 00:25:27 +01:00
|
|
|
package stirling.software.SPDF.model.api;
|
|
|
|
|
|
|
|
import org.springframework.web.multipart.MultipartFile;
|
|
|
|
|
|
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
2023-12-30 19:11:27 +00:00
|
|
|
|
2023-09-09 00:25:27 +01:00
|
|
|
import lombok.Data;
|
2023-09-10 09:24:20 +01:00
|
|
|
import lombok.EqualsAndHashCode;
|
2023-12-30 19:11:27 +00:00
|
|
|
|
2023-09-09 00:25:27 +01:00
|
|
|
@Data
|
2023-09-10 09:24:20 +01:00
|
|
|
@EqualsAndHashCode
|
2023-09-09 00:25:27 +01:00
|
|
|
public class MultiplePDFFiles {
|
|
|
|
@Schema(description = "The input PDF files", type = "array", format = "binary")
|
|
|
|
private MultipartFile[] fileInput;
|
|
|
|
}
|