mirror of
https://github.com/Frooodle/Stirling-PDF.git
synced 2025-11-16 01:21:16 +01:00
Add maximum values to rows and cols
This commit is contained in:
parent
454864d77d
commit
f3e84b80cf
@ -34,15 +34,19 @@ public class MergeMultiplePagesRequest extends PDFFile {
|
|||||||
|
|
||||||
@Schema(
|
@Schema(
|
||||||
description = "Number of rows",
|
description = "Number of rows",
|
||||||
type = "integer",
|
type = "number",
|
||||||
defaultValue = "1",
|
defaultValue = "1",
|
||||||
|
maximum = "300",
|
||||||
|
minimum = "1",
|
||||||
example = "3")
|
example = "3")
|
||||||
private Integer rows;
|
private Integer rows;
|
||||||
|
|
||||||
@Schema(
|
@Schema(
|
||||||
description = "Number of columns",
|
description = "Number of columns",
|
||||||
type = "integer",
|
type = "number",
|
||||||
defaultValue = "2",
|
defaultValue = "2",
|
||||||
|
maximum = "300",
|
||||||
|
minimum = "1",
|
||||||
example = "2")
|
example = "2")
|
||||||
private Integer cols;
|
private Integer cols;
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user