Class: AsposeWordsCloud::CompareDocumentRequest
- Inherits:
-
Object
- Object
- AsposeWordsCloud::CompareDocumentRequest
- Defined in:
- lib/aspose_words_cloud/models/requests/CompareDocumentRequest.rb
Overview
Request model for compare_document operation.
Instance Attribute Summary collapse
-
#compare_data ⇒ Object
with a document to compare.
-
#dest_file_name ⇒ Object
Result path of the document after the operation.
-
#folder ⇒ Object
Original document folder.
-
#load_encoding ⇒ Object
Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
-
#name ⇒ Object
Original document name.
-
#password ⇒ Object
Password for opening an encrypted document.
-
#storage ⇒ Object
Original document storage.
Instance Method Summary collapse
-
#initialize(name, compare_data, folder = nil, storage = nil, load_encoding = nil, password = nil, dest_file_name = nil) ⇒ CompareDocumentRequest
constructor
Initializes a new instance.
Constructor Details
#initialize(name, compare_data, folder = nil, storage = nil, load_encoding = nil, password = nil, dest_file_name = nil) ⇒ CompareDocumentRequest
Initializes a new instance.
59 60 61 62 63 64 65 66 67 |
# File 'lib/aspose_words_cloud/models/requests/CompareDocumentRequest.rb', line 59 def initialize(name, compare_data, folder = nil, storage = nil, load_encoding = nil, password = nil, dest_file_name = nil) self.name = name self.compare_data = compare_data self.folder = folder self.storage = storage self.load_encoding = load_encoding self.password = password self.dest_file_name = dest_file_name end |
Instance Attribute Details
#compare_data ⇒ Object
with a document to compare.
38 39 40 |
# File 'lib/aspose_words_cloud/models/requests/CompareDocumentRequest.rb', line 38 def compare_data @compare_data end |
#dest_file_name ⇒ Object
Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
48 49 50 |
# File 'lib/aspose_words_cloud/models/requests/CompareDocumentRequest.rb', line 48 def dest_file_name @dest_file_name end |
#folder ⇒ Object
Original document folder.
40 41 42 |
# File 'lib/aspose_words_cloud/models/requests/CompareDocumentRequest.rb', line 40 def folder @folder end |
#load_encoding ⇒ Object
Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
44 45 46 |
# File 'lib/aspose_words_cloud/models/requests/CompareDocumentRequest.rb', line 44 def load_encoding @load_encoding end |
#name ⇒ Object
Original document name.
36 37 38 |
# File 'lib/aspose_words_cloud/models/requests/CompareDocumentRequest.rb', line 36 def name @name end |
#password ⇒ Object
Password for opening an encrypted document.
46 47 48 |
# File 'lib/aspose_words_cloud/models/requests/CompareDocumentRequest.rb', line 46 def password @password end |
#storage ⇒ Object
Original document storage.
42 43 44 |
# File 'lib/aspose_words_cloud/models/requests/CompareDocumentRequest.rb', line 42 def storage @storage end |