Class: GroupDocsSignatureCloud::CopyFileRequest
- Inherits:
-
Object
- Object
- GroupDocsSignatureCloud::CopyFileRequest
- Defined in:
- lib/groupdocs_signature_cloud/api/file_api.rb
Overview
Request model for copy_file operation.
Instance Attribute Summary collapse
-
#dest_path ⇒ Object
Destination file path.
-
#dest_storage_name ⇒ Object
Destination storage name.
-
#src_path ⇒ Object
Source file path e.g.
-
#src_storage_name ⇒ Object
Source storage name.
-
#version_id ⇒ Object
File version ID to copy.
Instance Method Summary collapse
-
#initialize(src_path, dest_path, src_storage_name = nil, dest_storage_name = nil, version_id = nil) ⇒ CopyFileRequest
constructor
Initializes a new instance.
Constructor Details
#initialize(src_path, dest_path, src_storage_name = nil, dest_storage_name = nil, version_id = nil) ⇒ CopyFileRequest
Initializes a new instance.
506 507 508 509 510 511 512 |
# File 'lib/groupdocs_signature_cloud/api/file_api.rb', line 506 def initialize(src_path, dest_path, src_storage_name = nil, dest_storage_name = nil, version_id = nil) self.src_path = src_path self.dest_path = dest_path self.src_storage_name = src_storage_name self.dest_storage_name = dest_storage_name self.version_id = version_id end |
Instance Attribute Details
#dest_path ⇒ Object
Destination file path
491 492 493 |
# File 'lib/groupdocs_signature_cloud/api/file_api.rb', line 491 def dest_path @dest_path end |
#dest_storage_name ⇒ Object
Destination storage name
495 496 497 |
# File 'lib/groupdocs_signature_cloud/api/file_api.rb', line 495 def dest_storage_name @dest_storage_name end |
#src_path ⇒ Object
Source file path e.g. ‘/folder/file.ext’
489 490 491 |
# File 'lib/groupdocs_signature_cloud/api/file_api.rb', line 489 def src_path @src_path end |
#src_storage_name ⇒ Object
Source storage name
493 494 495 |
# File 'lib/groupdocs_signature_cloud/api/file_api.rb', line 493 def src_storage_name @src_storage_name end |
#version_id ⇒ Object
File version ID to copy
497 498 499 |
# File 'lib/groupdocs_signature_cloud/api/file_api.rb', line 497 def version_id @version_id end |