Class CopyFileRequest
- java.lang.Object
-
- com.aspose.cad.cloud.model.requests.CopyFileRequest
-
public class CopyFileRequest extends Object
Class that holds parameters for CopyFile request invocation.
-
-
Field Summary
Fields Modifier and Type Field Description String
destPath
Destination file pathString
destStorageName
Destination storage nameString
srcPath
Source file path e.g.String
srcStorageName
Source storage nameString
versionId
File version ID to copy
-
-
-
Field Detail
-
srcPath
public String srcPath
Source file path e.g. '/folder/file.ext'
-
destPath
public String destPath
Destination file path
-
srcStorageName
public String srcStorageName
Source storage name
-
destStorageName
public String destStorageName
Destination storage name
-
versionId
public String versionId
File version ID to copy
-
-
Constructor Detail
-
CopyFileRequest
public CopyFileRequest(String srcPath, String destPath, String srcStorageName, String destStorageName, String versionId)
Initializes a new instance of the CopyFileRequest class.- Parameters:
srcPath
- Source file path e.g. '/folder/file.ext'destPath
- Destination file pathsrcStorageName
- Source storage namedestStorageName
- Destination storage nameversionId
- File version ID to copy
-
-