Class: AsposeWordsCloud::ConvertDocumentRequest
- Inherits:
-
Object
- Object
- AsposeWordsCloud::ConvertDocumentRequest
- Defined in:
- lib/aspose_words_cloud/models/requests/ConvertDocumentRequest.rb
Overview
Request model for convert_document operation.
Instance Attribute Summary collapse
-
#document ⇒ Object
Converting document.
-
#file_name_field_value ⇒ Object
This file name will be used when resulting document has dynamic field for document file name filename.
-
#fonts_location ⇒ Object
Folder in filestorage with custom fonts.
-
#format ⇒ Object
Format to convert.
-
#out_path ⇒ Object
Path for saving operation result to the local storage.
-
#storage ⇒ Object
Original document storage.
Instance Method Summary collapse
-
#initialize(document, format, storage = nil, out_path = nil, file_name_field_value = nil, fonts_location = nil) ⇒ ConvertDocumentRequest
constructor
Initializes a new instance.
Constructor Details
#initialize(document, format, storage = nil, out_path = nil, file_name_field_value = nil, fonts_location = nil) ⇒ ConvertDocumentRequest
Initializes a new instance.
56 57 58 59 60 61 62 63 |
# File 'lib/aspose_words_cloud/models/requests/ConvertDocumentRequest.rb', line 56 def initialize(document, format, storage = nil, out_path = nil, file_name_field_value = nil, fonts_location = nil) self.document = document self.format = format self.storage = storage self.out_path = out_path self.file_name_field_value = file_name_field_value self.fonts_location = fonts_location end |
Instance Attribute Details
#document ⇒ Object
Converting document
36 37 38 |
# File 'lib/aspose_words_cloud/models/requests/ConvertDocumentRequest.rb', line 36 def document @document end |
#file_name_field_value ⇒ Object
This file name will be used when resulting document has dynamic field for document file name filename. If it is not set, "sourceFilename" will be used instead.
44 45 46 |
# File 'lib/aspose_words_cloud/models/requests/ConvertDocumentRequest.rb', line 44 def file_name_field_value @file_name_field_value end |
#fonts_location ⇒ Object
Folder in filestorage with custom fonts.
46 47 48 |
# File 'lib/aspose_words_cloud/models/requests/ConvertDocumentRequest.rb', line 46 def fonts_location @fonts_location end |
#format ⇒ Object
Format to convert.
38 39 40 |
# File 'lib/aspose_words_cloud/models/requests/ConvertDocumentRequest.rb', line 38 def format @format end |
#out_path ⇒ Object
Path for saving operation result to the local storage.
42 43 44 |
# File 'lib/aspose_words_cloud/models/requests/ConvertDocumentRequest.rb', line 42 def out_path @out_path end |
#storage ⇒ Object
Original document storage.
40 41 42 |
# File 'lib/aspose_words_cloud/models/requests/ConvertDocumentRequest.rb', line 40 def storage @storage end |