Class: AsposeWordsCloud::BuildReportOnlineRequest
- Inherits:
-
Object
- Object
- AsposeWordsCloud::BuildReportOnlineRequest
- Defined in:
- lib/aspose_words_cloud/models/requests/build_report_online_request.rb
Overview
Request model for build_report_online operation.
Instance Attribute Summary collapse
-
#data ⇒ Object
A string providing a data to populate the specified template.
-
#document_file_name ⇒ Object
This file name will be used when resulting document has dynamic field for document file name filename.
-
#report_engine_settings ⇒ Object
An object providing a settings of report engine.
-
#template ⇒ Object
File with template.
Instance Method Summary collapse
-
#initialize(template, data, report_engine_settings, document_file_name = nil) ⇒ BuildReportOnlineRequest
constructor
Initializes a new instance.
Constructor Details
#initialize(template, data, report_engine_settings, document_file_name = nil) ⇒ BuildReportOnlineRequest
Initializes a new instance.
51 52 53 54 55 56 |
# File 'lib/aspose_words_cloud/models/requests/build_report_online_request.rb', line 51 def initialize(template, data, report_engine_settings, document_file_name = nil) self.template = template self.data = data self.report_engine_settings = report_engine_settings self.document_file_name = document_file_name end |
Instance Attribute Details
#data ⇒ Object
A string providing a data to populate the specified template. The string must be of one of the following types: xml, json, csv.
36 37 38 |
# File 'lib/aspose_words_cloud/models/requests/build_report_online_request.rb', line 36 def data @data end |
#document_file_name ⇒ Object
This file name will be used when resulting document has dynamic field for document file name filename. If it is not set, “template” will be used instead.
42 43 44 |
# File 'lib/aspose_words_cloud/models/requests/build_report_online_request.rb', line 42 def document_file_name @document_file_name end |
#report_engine_settings ⇒ Object
An object providing a settings of report engine.
39 40 41 |
# File 'lib/aspose_words_cloud/models/requests/build_report_online_request.rb', line 39 def report_engine_settings @report_engine_settings end |
#template ⇒ Object
File with template.
33 34 35 |
# File 'lib/aspose_words_cloud/models/requests/build_report_online_request.rb', line 33 def template @template end |