Class GetDrawingResizeRequest
- java.lang.Object
-
- com.aspose.cad.cloud.model.requests.GetDrawingResizeRequest
-
public class GetDrawingResizeRequest extends Object
Class that holds parameters for GetDrawingResize request invocation.
-
-
Field Summary
Fields Modifier and Type Field Description String
folder
Folder with a drawing to process.String
name
Filename of a drawing.Integer
newHeight
New height.Integer
newWidth
New width.String
outPath
Path to updated file (if this is empty, response contains streamed file).String
outputFormat
Resulting file format.String
storage
Your Aspose Cloud Storage name.
-
-
-
Field Detail
-
name
public String name
Filename of a drawing.
-
outputFormat
public String outputFormat
Resulting file format.
-
newWidth
public Integer newWidth
New width.
-
newHeight
public Integer newHeight
New height.
-
folder
public String folder
Folder with a drawing to process.
-
outPath
public String outPath
Path to updated file (if this is empty, response contains streamed file).
-
storage
public String storage
Your Aspose Cloud Storage name.
-
-
Constructor Detail
-
GetDrawingResizeRequest
public GetDrawingResizeRequest(String name, String outputFormat, Integer newWidth, Integer newHeight, String folder, String outPath, String storage)
Initializes a new instance of the GetDrawingResizeRequest class.- Parameters:
name
- Filename of a drawing.outputFormat
- Resulting file format.newWidth
- New width.newHeight
- New height.folder
- Folder with a drawing to process.outPath
- Path to updated file (if this is empty, response contains streamed file).storage
- Your Aspose Cloud Storage name.
-
-