mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2025-06-20 14:35:03 +00:00
16 lines
371 B
Java
16 lines
371 B
Java
![]() |
package stirling.software.SPDF.model.api;
|
||
|
|
||
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||
|
import lombok.Data;
|
||
|
import org.springframework.web.multipart.MultipartFile;
|
||
|
|
||
|
@Data
|
||
|
public class HandleDataRequest {
|
||
|
|
||
|
@Schema(description = "The input files")
|
||
|
private MultipartFile[] fileInputs;
|
||
|
|
||
|
@Schema(description = "JSON String")
|
||
|
private String jsonString;
|
||
|
}
|