Class: AsposeWordsCloud::DeleteFileRequest
- Inherits:
-
Object
- Object
- AsposeWordsCloud::DeleteFileRequest
- Defined in:
- lib/aspose_words_cloud/models/requests/DeleteFileRequest.rb
Overview
Request model for delete_file operation.
Instance Attribute Summary collapse
-
#path ⇒ Object
Path of the file including file name and extension e.g.
-
#storage_name ⇒ Object
Storage name.
-
#version_id ⇒ Object
File version ID to delete.
Instance Method Summary collapse
-
#initialize(path, storage_name = nil, version_id = nil) ⇒ DeleteFileRequest
constructor
Initializes a new instance.
Constructor Details
#initialize(path, storage_name = nil, version_id = nil) ⇒ DeleteFileRequest
Initializes a new instance.
47 48 49 50 51 |
# File 'lib/aspose_words_cloud/models/requests/DeleteFileRequest.rb', line 47 def initialize(path, storage_name = nil, version_id = nil) self.path = path self.storage_name = storage_name self.version_id = version_id end |
Instance Attribute Details
#path ⇒ Object
Path of the file including file name and extension e.g. /Folder1/file.ext
36 37 38 |
# File 'lib/aspose_words_cloud/models/requests/DeleteFileRequest.rb', line 36 def path @path end |
#storage_name ⇒ Object
Storage name
38 39 40 |
# File 'lib/aspose_words_cloud/models/requests/DeleteFileRequest.rb', line 38 def storage_name @storage_name end |
#version_id ⇒ Object
File version ID to delete
40 41 42 |
# File 'lib/aspose_words_cloud/models/requests/DeleteFileRequest.rb', line 40 def version_id @version_id end |