Class: AsposeWordsCloud::CreateDocumentRequest
- Inherits:
-
Object
- Object
- AsposeWordsCloud::CreateDocumentRequest
- Defined in:
- lib/aspose_words_cloud/models/requests/create_document_request.rb
Overview
Request model for create_document operation.
Instance Attribute Summary collapse
-
#file_name ⇒ Object
The filename of the document.
-
#folder ⇒ Object
The path to the document folder.
-
#storage ⇒ Object
Original document storage.
Instance Method Summary collapse
-
#initialize(file_name = nil, folder = nil, storage = nil) ⇒ CreateDocumentRequest
constructor
Initializes a new instance.
Constructor Details
#initialize(file_name = nil, folder = nil, storage = nil) ⇒ CreateDocumentRequest
Initializes a new instance.
47 48 49 50 51 |
# File 'lib/aspose_words_cloud/models/requests/create_document_request.rb', line 47 def initialize(file_name = nil, folder = nil, storage = nil) self.file_name = file_name self.folder = folder self.storage = storage end |
Instance Attribute Details
#file_name ⇒ Object
The filename of the document.
33 34 35 |
# File 'lib/aspose_words_cloud/models/requests/create_document_request.rb', line 33 def file_name @file_name end |
#folder ⇒ Object
The path to the document folder.
36 37 38 |
# File 'lib/aspose_words_cloud/models/requests/create_document_request.rb', line 36 def folder @folder end |
#storage ⇒ Object
Original document storage.
39 40 41 |
# File 'lib/aspose_words_cloud/models/requests/create_document_request.rb', line 39 def storage @storage end |