aspose_cells_cloud 26.4 → 26.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +7 -5
- data/lib/aspose_cells_cloud/api/cells_api.rb +102 -0
- data/lib/aspose_cells_cloud/models/ebook_save_options.rb +822 -0
- data/lib/aspose_cells_cloud/models/formula_calculate_result_response.rb +258 -0
- data/lib/aspose_cells_cloud/requests/add_text_in_remote_spreadsheet_request.rb +196 -0
- data/lib/aspose_cells_cloud/requests/calculation_formula_request.rb +147 -0
- data/lib/aspose_cells_cloud/requests/convert_range_to_csv_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/convert_range_to_html_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/convert_range_to_image_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/convert_range_to_json_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/convert_range_to_pdf_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/convert_spreadsheet_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/convert_spreadsheet_to_csv_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/convert_spreadsheet_to_json_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/convert_spreadsheet_to_pdf_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/convert_table_to_csv_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/convert_table_to_html_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/convert_table_to_image_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/convert_table_to_json_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/convert_table_to_pdf_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/convert_text_in_remote_spreadsheet_request.rb +184 -0
- data/lib/aspose_cells_cloud/requests/convert_worksheet_to_csv_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/convert_worksheet_to_html_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/convert_worksheet_to_image_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/convert_worksheet_to_json_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/convert_worksheet_to_pdf_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/export_range_as_format_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/export_spreadsheet_as_format_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/export_table_as_format_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/export_worksheet_as_format_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/get_spreadsheet_structure_request.rb +123 -0
- data/lib/aspose_cells_cloud/requests/get_structure_in_remote_spreadsheet_request.rb +134 -0
- data/lib/aspose_cells_cloud/requests/remove_characters_by_position_in_remote_spreadsheet_request.rb +196 -0
- data/lib/aspose_cells_cloud/requests/remove_characters_in_remote_spreadsheet_request.rb +188 -0
- data/lib/aspose_cells_cloud/requests/remove_duplicate_substrings_in_remote_spreadsheet_request.rb +184 -0
- data/lib/aspose_cells_cloud/requests/report_ai_analysis_request.rb +122 -0
- data/lib/aspose_cells_cloud/requests/save_spreadsheet_as_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/smart_marker_template_request.rb +107 -0
- data/lib/aspose_cells_cloud/requests/summarize_spreadsheet_request.rb +123 -0
- data/lib/aspose_cells_cloud/requests/trim_character_in_remote_spreadsheet_request.rb +212 -0
- data/lib/aspose_cells_cloud/requests/update_word_case_in_remote_spreadsheet_request.rb +168 -0
- data/lib/aspose_cells_cloud/version.rb +1 -1
- data/lib/aspose_cells_cloud.rb +15 -0
- data/spec/TestData/AggregateCellsByColor.xlsx +0 -0
- data/spec/TestData/Book1.xlsx +0 -0
- data/spec/TestData/BookCsvDuplicateData.csv +21 -0
- data/spec/TestData/BookDuplicateData.xlsx +0 -0
- data/spec/TestData/BookFormula.xlsx +0 -0
- data/spec/TestData/BookTableL2W.xlsx +0 -0
- data/spec/TestData/BookText.xlsx +0 -0
- data/spec/TestData/CompanySales.xlsx +0 -0
- data/spec/TestData/EmployeeSalesSummary-BlankWorksheet.xlsx +0 -0
- data/spec/TestData/EmployeeSalesSummary.xlsx +0 -0
- data/spec/TestData/EmployeeSalesSummary_Locked.xlsx +0 -0
- data/spec/TestData/Formula tutorial.xlsx +0 -0
- data/spec/TestData/Group.xlsx +0 -0
- data/spec/TestData/Home inventory.xlsx +0 -0
- data/spec/TestData/LockedEmployeeSalesSummary.xlsx +0 -0
- data/spec/TestData/OLEDoc.docx +0 -0
- data/spec/TestData/ReportData.xml +1 -0
- data/spec/TestData/Simple invoice.xlsx +0 -0
- data/spec/TestData/Template.xlsx +0 -0
- data/spec/TestData/TestCase.xlsx +0 -0
- data/spec/TestData/TestTables.xlsx +0 -0
- data/spec/TestData/WaterMark.png +0 -0
- data/spec/TestData/assemblytest.xlsx +0 -0
- data/spec/TestData/data.xml +1 -0
- data/spec/TestData/datasource.xlsx +0 -0
- data/spec/TestData/myDocument.xlsx +0 -0
- data/spec/TestData/needUnlock.xlsx +0 -0
- data/spec/TestData/needlock.xlsx +0 -0
- data/spec/TestData/roywang.pfx +0 -0
- data/spec/TestData/word.jpg +0 -0
- data/spec/calculate/calculate_spec.rb +29 -0
- data/spec/cells_cloud30/auto_filter_controller_spec.rb +211 -0
- data/spec/cells_cloud30/batch_controller_spec.rb +113 -0
- data/spec/cells_cloud30/cells_controller_spec.rb +627 -0
- data/spec/cells_cloud30/cells_status_controller_spec.rb +43 -0
- data/spec/cells_cloud30/chart_area_controller_spec.rb +58 -0
- data/spec/cells_cloud30/charts_controller_spec.rb +227 -0
- data/spec/cells_cloud30/conditional_formattings_controller_spec.rb +149 -0
- data/spec/cells_cloud30/conversion30_spec.rb +1112 -0
- data/spec/cells_cloud30/data_processing_controller_spec.rb +97 -0
- data/spec/cells_cloud30/hypelinks_controller_spec.rb +104 -0
- data/spec/cells_cloud30/light_cells_spec.rb +1059 -0
- data/spec/cells_cloud30/list_objects_controller_spec.rb +225 -0
- data/spec/cells_cloud30/ole_objects_controller_spec.rb +108 -0
- data/spec/cells_cloud30/page_breaks_controller_spec.rb +163 -0
- data/spec/cells_cloud30/page_setup_controller_spec.rb +149 -0
- data/spec/cells_cloud30/pictures_controller_spec.rb +106 -0
- data/spec/cells_cloud30/pivot_tables_controller_spec.rb +312 -0
- data/spec/cells_cloud30/properties_controller_spec.rb +89 -0
- data/spec/cells_cloud30/ranges_controller_spec.rb +227 -0
- data/spec/cells_cloud30/shapes_controller_spec.rb +139 -0
- data/spec/cells_cloud30/sparkline_groups_controller_spec.rb +104 -0
- data/spec/cells_cloud30/text_processing_controller_spec.rb +67 -0
- data/spec/cells_cloud30/workbook_controller_spec.rb +519 -0
- data/spec/cells_cloud30/worksheet_controller_spec.rb +609 -0
- data/spec/cells_cloud30/worksheet_validations_controller_spec.rb +104 -0
- data/spec/cells_cloud30/xml_controller_spec.rb +48 -0
- data/spec/data_processing/conversion_spec.rb +428 -0
- data/spec/data_processing/import_data_spec.rb +24 -0
- data/spec/data_processing/merger_spec.rb +28 -0
- data/spec/data_processing/protection_spec.rb +29 -0
- data/spec/data_processing/splitter_spec.rb +47 -0
- data/spec/data_processing/transform_spec.rb +43 -0
- data/spec/dynabic/file_controller_spec.rb +60 -0
- data/spec/dynabic/folder_controller_spec.rb +88 -0
- data/spec/dynabic/storage_controller_spec.rb +73 -0
- data/spec/management/management_spec.rb +111 -0
- data/spec/search2_replace/replacer_spec.rb +46 -0
- data/spec/search2_replace/searcher_spec.rb +131 -0
- data/spec/spec_helper.rb +134 -0
- data/spec/text_processing/add_text_spec.rb +45 -0
- data/spec/text_processing/convert_text_spec.rb +37 -0
- data/spec/text_processing/extract_text_spec.rb +37 -0
- data/spec/text_processing/remove_characters_spec.rb +53 -0
- data/spec/text_processing/split_text_spec.rb +21 -0
- data/spec/text_processing/trim_spreadsheet_spec.rb +29 -0
- data/spec/text_processing/update_word_case_spec.rb +37 -0
- metadata +95 -3
|
@@ -37,6 +37,8 @@ module AsposeCellsCloud
|
|
|
37
37
|
attr_accessor :out_path
|
|
38
38
|
attr_accessor :out_storage_name
|
|
39
39
|
attr_accessor :fonts_location
|
|
40
|
+
attr_accessor :auto_rows_fit
|
|
41
|
+
attr_accessor :auto_columns_fit
|
|
40
42
|
attr_accessor :region
|
|
41
43
|
attr_accessor :password
|
|
42
44
|
|
|
@@ -70,6 +72,14 @@ module AsposeCellsCloud
|
|
|
70
72
|
self.fonts_location = attributes[:'fontsLocation']
|
|
71
73
|
end
|
|
72
74
|
|
|
75
|
+
if attributes.has_key?(:'AutoRowsFit')
|
|
76
|
+
self.auto_rows_fit = attributes[:'AutoRowsFit']
|
|
77
|
+
end
|
|
78
|
+
|
|
79
|
+
if attributes.has_key?(:'AutoColumnsFit')
|
|
80
|
+
self.auto_columns_fit = attributes[:'AutoColumnsFit']
|
|
81
|
+
end
|
|
82
|
+
|
|
73
83
|
if attributes.has_key?(:'region')
|
|
74
84
|
self.region = attributes[:'region']
|
|
75
85
|
end
|
|
@@ -88,6 +98,8 @@ module AsposeCellsCloud
|
|
|
88
98
|
:'out_path' => :'outPath',
|
|
89
99
|
:'out_storage_name' => :'outStorageName',
|
|
90
100
|
:'fonts_location' => :'fontsLocation',
|
|
101
|
+
:'auto_rows_fit' => :'AutoRowsFit',
|
|
102
|
+
:'auto_columns_fit' => :'AutoColumnsFit',
|
|
91
103
|
:'region' => :'region',
|
|
92
104
|
:'password' => :'password'
|
|
93
105
|
}
|
|
@@ -102,6 +114,8 @@ module AsposeCellsCloud
|
|
|
102
114
|
:'out_path' => :'String',
|
|
103
115
|
:'out_storage_name' => :'String',
|
|
104
116
|
:'fonts_location' => :'String',
|
|
117
|
+
:'auto_rows_fit' => :'BOOLEAN',
|
|
118
|
+
:'auto_columns_fit' => :'BOOLEAN',
|
|
105
119
|
:'region' => :'String',
|
|
106
120
|
:'password' => :'String'
|
|
107
121
|
}
|
|
@@ -134,6 +148,8 @@ module AsposeCellsCloud
|
|
|
134
148
|
query_params[:'outPath'] = self.out_path if !self.out_path.nil?
|
|
135
149
|
query_params[:'outStorageName'] = self.out_storage_name if !self.out_storage_name.nil?
|
|
136
150
|
query_params[:'fontsLocation'] = self.fonts_location if !self.fonts_location.nil?
|
|
151
|
+
query_params[:'AutoRowsFit'] = self.auto_rows_fit if !self.auto_rows_fit.nil?
|
|
152
|
+
query_params[:'AutoColumnsFit'] = self.auto_columns_fit if !self.auto_columns_fit.nil?
|
|
137
153
|
query_params[:'region'] = self.region if !self.region.nil?
|
|
138
154
|
query_params[:'password'] = self.password if !self.password.nil?
|
|
139
155
|
|
|
@@ -39,6 +39,8 @@ module AsposeCellsCloud
|
|
|
39
39
|
attr_accessor :out_path
|
|
40
40
|
attr_accessor :out_storage_name
|
|
41
41
|
attr_accessor :fonts_location
|
|
42
|
+
attr_accessor :auto_rows_fit
|
|
43
|
+
attr_accessor :auto_columns_fit
|
|
42
44
|
attr_accessor :region
|
|
43
45
|
attr_accessor :password
|
|
44
46
|
|
|
@@ -80,6 +82,14 @@ module AsposeCellsCloud
|
|
|
80
82
|
self.fonts_location = attributes[:'fontsLocation']
|
|
81
83
|
end
|
|
82
84
|
|
|
85
|
+
if attributes.has_key?(:'AutoRowsFit')
|
|
86
|
+
self.auto_rows_fit = attributes[:'AutoRowsFit']
|
|
87
|
+
end
|
|
88
|
+
|
|
89
|
+
if attributes.has_key?(:'AutoColumnsFit')
|
|
90
|
+
self.auto_columns_fit = attributes[:'AutoColumnsFit']
|
|
91
|
+
end
|
|
92
|
+
|
|
83
93
|
if attributes.has_key?(:'region')
|
|
84
94
|
self.region = attributes[:'region']
|
|
85
95
|
end
|
|
@@ -100,6 +110,8 @@ module AsposeCellsCloud
|
|
|
100
110
|
:'out_path' => :'outPath',
|
|
101
111
|
:'out_storage_name' => :'outStorageName',
|
|
102
112
|
:'fonts_location' => :'fontsLocation',
|
|
113
|
+
:'auto_rows_fit' => :'AutoRowsFit',
|
|
114
|
+
:'auto_columns_fit' => :'AutoColumnsFit',
|
|
103
115
|
:'region' => :'region',
|
|
104
116
|
:'password' => :'password'
|
|
105
117
|
}
|
|
@@ -116,6 +128,8 @@ module AsposeCellsCloud
|
|
|
116
128
|
:'out_path' => :'String',
|
|
117
129
|
:'out_storage_name' => :'String',
|
|
118
130
|
:'fonts_location' => :'String',
|
|
131
|
+
:'auto_rows_fit' => :'BOOLEAN',
|
|
132
|
+
:'auto_columns_fit' => :'BOOLEAN',
|
|
119
133
|
:'region' => :'String',
|
|
120
134
|
:'password' => :'String'
|
|
121
135
|
}
|
|
@@ -154,6 +168,8 @@ module AsposeCellsCloud
|
|
|
154
168
|
query_params[:'outPath'] = self.out_path if !self.out_path.nil?
|
|
155
169
|
query_params[:'outStorageName'] = self.out_storage_name if !self.out_storage_name.nil?
|
|
156
170
|
query_params[:'fontsLocation'] = self.fonts_location if !self.fonts_location.nil?
|
|
171
|
+
query_params[:'AutoRowsFit'] = self.auto_rows_fit if !self.auto_rows_fit.nil?
|
|
172
|
+
query_params[:'AutoColumnsFit'] = self.auto_columns_fit if !self.auto_columns_fit.nil?
|
|
157
173
|
query_params[:'region'] = self.region if !self.region.nil?
|
|
158
174
|
query_params[:'password'] = self.password if !self.password.nil?
|
|
159
175
|
|
|
@@ -37,6 +37,8 @@ module AsposeCellsCloud
|
|
|
37
37
|
attr_accessor :out_path
|
|
38
38
|
attr_accessor :out_storage_name
|
|
39
39
|
attr_accessor :fonts_location
|
|
40
|
+
attr_accessor :auto_rows_fit
|
|
41
|
+
attr_accessor :auto_columns_fit
|
|
40
42
|
attr_accessor :region
|
|
41
43
|
attr_accessor :password
|
|
42
44
|
|
|
@@ -70,6 +72,14 @@ module AsposeCellsCloud
|
|
|
70
72
|
self.fonts_location = attributes[:'fontsLocation']
|
|
71
73
|
end
|
|
72
74
|
|
|
75
|
+
if attributes.has_key?(:'AutoRowsFit')
|
|
76
|
+
self.auto_rows_fit = attributes[:'AutoRowsFit']
|
|
77
|
+
end
|
|
78
|
+
|
|
79
|
+
if attributes.has_key?(:'AutoColumnsFit')
|
|
80
|
+
self.auto_columns_fit = attributes[:'AutoColumnsFit']
|
|
81
|
+
end
|
|
82
|
+
|
|
73
83
|
if attributes.has_key?(:'region')
|
|
74
84
|
self.region = attributes[:'region']
|
|
75
85
|
end
|
|
@@ -88,6 +98,8 @@ module AsposeCellsCloud
|
|
|
88
98
|
:'out_path' => :'outPath',
|
|
89
99
|
:'out_storage_name' => :'outStorageName',
|
|
90
100
|
:'fonts_location' => :'fontsLocation',
|
|
101
|
+
:'auto_rows_fit' => :'AutoRowsFit',
|
|
102
|
+
:'auto_columns_fit' => :'AutoColumnsFit',
|
|
91
103
|
:'region' => :'region',
|
|
92
104
|
:'password' => :'password'
|
|
93
105
|
}
|
|
@@ -102,6 +114,8 @@ module AsposeCellsCloud
|
|
|
102
114
|
:'out_path' => :'String',
|
|
103
115
|
:'out_storage_name' => :'String',
|
|
104
116
|
:'fonts_location' => :'String',
|
|
117
|
+
:'auto_rows_fit' => :'BOOLEAN',
|
|
118
|
+
:'auto_columns_fit' => :'BOOLEAN',
|
|
105
119
|
:'region' => :'String',
|
|
106
120
|
:'password' => :'String'
|
|
107
121
|
}
|
|
@@ -134,6 +148,8 @@ module AsposeCellsCloud
|
|
|
134
148
|
query_params[:'outPath'] = self.out_path if !self.out_path.nil?
|
|
135
149
|
query_params[:'outStorageName'] = self.out_storage_name if !self.out_storage_name.nil?
|
|
136
150
|
query_params[:'fontsLocation'] = self.fonts_location if !self.fonts_location.nil?
|
|
151
|
+
query_params[:'AutoRowsFit'] = self.auto_rows_fit if !self.auto_rows_fit.nil?
|
|
152
|
+
query_params[:'AutoColumnsFit'] = self.auto_columns_fit if !self.auto_columns_fit.nil?
|
|
137
153
|
query_params[:'region'] = self.region if !self.region.nil?
|
|
138
154
|
query_params[:'password'] = self.password if !self.password.nil?
|
|
139
155
|
|
|
@@ -37,6 +37,8 @@ module AsposeCellsCloud
|
|
|
37
37
|
attr_accessor :out_path
|
|
38
38
|
attr_accessor :out_storage_name
|
|
39
39
|
attr_accessor :fonts_location
|
|
40
|
+
attr_accessor :auto_rows_fit
|
|
41
|
+
attr_accessor :auto_columns_fit
|
|
40
42
|
attr_accessor :region
|
|
41
43
|
attr_accessor :password
|
|
42
44
|
|
|
@@ -70,6 +72,14 @@ module AsposeCellsCloud
|
|
|
70
72
|
self.fonts_location = attributes[:'fontsLocation']
|
|
71
73
|
end
|
|
72
74
|
|
|
75
|
+
if attributes.has_key?(:'AutoRowsFit')
|
|
76
|
+
self.auto_rows_fit = attributes[:'AutoRowsFit']
|
|
77
|
+
end
|
|
78
|
+
|
|
79
|
+
if attributes.has_key?(:'AutoColumnsFit')
|
|
80
|
+
self.auto_columns_fit = attributes[:'AutoColumnsFit']
|
|
81
|
+
end
|
|
82
|
+
|
|
73
83
|
if attributes.has_key?(:'region')
|
|
74
84
|
self.region = attributes[:'region']
|
|
75
85
|
end
|
|
@@ -88,6 +98,8 @@ module AsposeCellsCloud
|
|
|
88
98
|
:'out_path' => :'outPath',
|
|
89
99
|
:'out_storage_name' => :'outStorageName',
|
|
90
100
|
:'fonts_location' => :'fontsLocation',
|
|
101
|
+
:'auto_rows_fit' => :'AutoRowsFit',
|
|
102
|
+
:'auto_columns_fit' => :'AutoColumnsFit',
|
|
91
103
|
:'region' => :'region',
|
|
92
104
|
:'password' => :'password'
|
|
93
105
|
}
|
|
@@ -102,6 +114,8 @@ module AsposeCellsCloud
|
|
|
102
114
|
:'out_path' => :'String',
|
|
103
115
|
:'out_storage_name' => :'String',
|
|
104
116
|
:'fonts_location' => :'String',
|
|
117
|
+
:'auto_rows_fit' => :'BOOLEAN',
|
|
118
|
+
:'auto_columns_fit' => :'BOOLEAN',
|
|
105
119
|
:'region' => :'String',
|
|
106
120
|
:'password' => :'String'
|
|
107
121
|
}
|
|
@@ -134,6 +148,8 @@ module AsposeCellsCloud
|
|
|
134
148
|
query_params[:'outPath'] = self.out_path if !self.out_path.nil?
|
|
135
149
|
query_params[:'outStorageName'] = self.out_storage_name if !self.out_storage_name.nil?
|
|
136
150
|
query_params[:'fontsLocation'] = self.fonts_location if !self.fonts_location.nil?
|
|
151
|
+
query_params[:'AutoRowsFit'] = self.auto_rows_fit if !self.auto_rows_fit.nil?
|
|
152
|
+
query_params[:'AutoColumnsFit'] = self.auto_columns_fit if !self.auto_columns_fit.nil?
|
|
137
153
|
query_params[:'region'] = self.region if !self.region.nil?
|
|
138
154
|
query_params[:'password'] = self.password if !self.password.nil?
|
|
139
155
|
|
|
@@ -36,6 +36,8 @@ module AsposeCellsCloud
|
|
|
36
36
|
attr_accessor :out_path
|
|
37
37
|
attr_accessor :out_storage_name
|
|
38
38
|
attr_accessor :fonts_location
|
|
39
|
+
attr_accessor :auto_rows_fit
|
|
40
|
+
attr_accessor :auto_columns_fit
|
|
39
41
|
attr_accessor :region
|
|
40
42
|
attr_accessor :password
|
|
41
43
|
|
|
@@ -65,6 +67,14 @@ module AsposeCellsCloud
|
|
|
65
67
|
self.fonts_location = attributes[:'fontsLocation']
|
|
66
68
|
end
|
|
67
69
|
|
|
70
|
+
if attributes.has_key?(:'AutoRowsFit')
|
|
71
|
+
self.auto_rows_fit = attributes[:'AutoRowsFit']
|
|
72
|
+
end
|
|
73
|
+
|
|
74
|
+
if attributes.has_key?(:'AutoColumnsFit')
|
|
75
|
+
self.auto_columns_fit = attributes[:'AutoColumnsFit']
|
|
76
|
+
end
|
|
77
|
+
|
|
68
78
|
if attributes.has_key?(:'region')
|
|
69
79
|
self.region = attributes[:'region']
|
|
70
80
|
end
|
|
@@ -82,6 +92,8 @@ module AsposeCellsCloud
|
|
|
82
92
|
:'out_path' => :'outPath',
|
|
83
93
|
:'out_storage_name' => :'outStorageName',
|
|
84
94
|
:'fonts_location' => :'fontsLocation',
|
|
95
|
+
:'auto_rows_fit' => :'AutoRowsFit',
|
|
96
|
+
:'auto_columns_fit' => :'AutoColumnsFit',
|
|
85
97
|
:'region' => :'region',
|
|
86
98
|
:'password' => :'password'
|
|
87
99
|
}
|
|
@@ -95,6 +107,8 @@ module AsposeCellsCloud
|
|
|
95
107
|
:'out_path' => :'String',
|
|
96
108
|
:'out_storage_name' => :'String',
|
|
97
109
|
:'fonts_location' => :'String',
|
|
110
|
+
:'auto_rows_fit' => :'BOOLEAN',
|
|
111
|
+
:'auto_columns_fit' => :'BOOLEAN',
|
|
98
112
|
:'region' => :'String',
|
|
99
113
|
:'password' => :'String'
|
|
100
114
|
}
|
|
@@ -122,6 +136,8 @@ module AsposeCellsCloud
|
|
|
122
136
|
query_params[:'outPath'] = self.out_path if !self.out_path.nil?
|
|
123
137
|
query_params[:'outStorageName'] = self.out_storage_name if !self.out_storage_name.nil?
|
|
124
138
|
query_params[:'fontsLocation'] = self.fonts_location if !self.fonts_location.nil?
|
|
139
|
+
query_params[:'AutoRowsFit'] = self.auto_rows_fit if !self.auto_rows_fit.nil?
|
|
140
|
+
query_params[:'AutoColumnsFit'] = self.auto_columns_fit if !self.auto_columns_fit.nil?
|
|
125
141
|
query_params[:'region'] = self.region if !self.region.nil?
|
|
126
142
|
query_params[:'password'] = self.password if !self.password.nil?
|
|
127
143
|
|
|
@@ -35,6 +35,8 @@ module AsposeCellsCloud
|
|
|
35
35
|
attr_accessor :out_path
|
|
36
36
|
attr_accessor :out_storage_name
|
|
37
37
|
attr_accessor :fonts_location
|
|
38
|
+
attr_accessor :auto_rows_fit
|
|
39
|
+
attr_accessor :auto_columns_fit
|
|
38
40
|
attr_accessor :region
|
|
39
41
|
attr_accessor :password
|
|
40
42
|
|
|
@@ -60,6 +62,14 @@ module AsposeCellsCloud
|
|
|
60
62
|
self.fonts_location = attributes[:'fontsLocation']
|
|
61
63
|
end
|
|
62
64
|
|
|
65
|
+
if attributes.has_key?(:'AutoRowsFit')
|
|
66
|
+
self.auto_rows_fit = attributes[:'AutoRowsFit']
|
|
67
|
+
end
|
|
68
|
+
|
|
69
|
+
if attributes.has_key?(:'AutoColumnsFit')
|
|
70
|
+
self.auto_columns_fit = attributes[:'AutoColumnsFit']
|
|
71
|
+
end
|
|
72
|
+
|
|
63
73
|
if attributes.has_key?(:'region')
|
|
64
74
|
self.region = attributes[:'region']
|
|
65
75
|
end
|
|
@@ -76,6 +86,8 @@ module AsposeCellsCloud
|
|
|
76
86
|
:'out_path' => :'outPath',
|
|
77
87
|
:'out_storage_name' => :'outStorageName',
|
|
78
88
|
:'fonts_location' => :'fontsLocation',
|
|
89
|
+
:'auto_rows_fit' => :'AutoRowsFit',
|
|
90
|
+
:'auto_columns_fit' => :'AutoColumnsFit',
|
|
79
91
|
:'region' => :'region',
|
|
80
92
|
:'password' => :'password'
|
|
81
93
|
}
|
|
@@ -88,6 +100,8 @@ module AsposeCellsCloud
|
|
|
88
100
|
:'out_path' => :'String',
|
|
89
101
|
:'out_storage_name' => :'String',
|
|
90
102
|
:'fonts_location' => :'String',
|
|
103
|
+
:'auto_rows_fit' => :'BOOLEAN',
|
|
104
|
+
:'auto_columns_fit' => :'BOOLEAN',
|
|
91
105
|
:'region' => :'String',
|
|
92
106
|
:'password' => :'String'
|
|
93
107
|
}
|
|
@@ -110,6 +124,8 @@ module AsposeCellsCloud
|
|
|
110
124
|
query_params[:'outPath'] = self.out_path if !self.out_path.nil?
|
|
111
125
|
query_params[:'outStorageName'] = self.out_storage_name if !self.out_storage_name.nil?
|
|
112
126
|
query_params[:'fontsLocation'] = self.fonts_location if !self.fonts_location.nil?
|
|
127
|
+
query_params[:'AutoRowsFit'] = self.auto_rows_fit if !self.auto_rows_fit.nil?
|
|
128
|
+
query_params[:'AutoColumnsFit'] = self.auto_columns_fit if !self.auto_columns_fit.nil?
|
|
113
129
|
query_params[:'region'] = self.region if !self.region.nil?
|
|
114
130
|
query_params[:'password'] = self.password if !self.password.nil?
|
|
115
131
|
|
|
@@ -35,6 +35,8 @@ module AsposeCellsCloud
|
|
|
35
35
|
attr_accessor :out_path
|
|
36
36
|
attr_accessor :out_storage_name
|
|
37
37
|
attr_accessor :fonts_location
|
|
38
|
+
attr_accessor :auto_rows_fit
|
|
39
|
+
attr_accessor :auto_columns_fit
|
|
38
40
|
attr_accessor :region
|
|
39
41
|
attr_accessor :password
|
|
40
42
|
|
|
@@ -60,6 +62,14 @@ module AsposeCellsCloud
|
|
|
60
62
|
self.fonts_location = attributes[:'fontsLocation']
|
|
61
63
|
end
|
|
62
64
|
|
|
65
|
+
if attributes.has_key?(:'AutoRowsFit')
|
|
66
|
+
self.auto_rows_fit = attributes[:'AutoRowsFit']
|
|
67
|
+
end
|
|
68
|
+
|
|
69
|
+
if attributes.has_key?(:'AutoColumnsFit')
|
|
70
|
+
self.auto_columns_fit = attributes[:'AutoColumnsFit']
|
|
71
|
+
end
|
|
72
|
+
|
|
63
73
|
if attributes.has_key?(:'region')
|
|
64
74
|
self.region = attributes[:'region']
|
|
65
75
|
end
|
|
@@ -76,6 +86,8 @@ module AsposeCellsCloud
|
|
|
76
86
|
:'out_path' => :'outPath',
|
|
77
87
|
:'out_storage_name' => :'outStorageName',
|
|
78
88
|
:'fonts_location' => :'fontsLocation',
|
|
89
|
+
:'auto_rows_fit' => :'AutoRowsFit',
|
|
90
|
+
:'auto_columns_fit' => :'AutoColumnsFit',
|
|
79
91
|
:'region' => :'region',
|
|
80
92
|
:'password' => :'password'
|
|
81
93
|
}
|
|
@@ -88,6 +100,8 @@ module AsposeCellsCloud
|
|
|
88
100
|
:'out_path' => :'String',
|
|
89
101
|
:'out_storage_name' => :'String',
|
|
90
102
|
:'fonts_location' => :'String',
|
|
103
|
+
:'auto_rows_fit' => :'BOOLEAN',
|
|
104
|
+
:'auto_columns_fit' => :'BOOLEAN',
|
|
91
105
|
:'region' => :'String',
|
|
92
106
|
:'password' => :'String'
|
|
93
107
|
}
|
|
@@ -110,6 +124,8 @@ module AsposeCellsCloud
|
|
|
110
124
|
query_params[:'outPath'] = self.out_path if !self.out_path.nil?
|
|
111
125
|
query_params[:'outStorageName'] = self.out_storage_name if !self.out_storage_name.nil?
|
|
112
126
|
query_params[:'fontsLocation'] = self.fonts_location if !self.fonts_location.nil?
|
|
127
|
+
query_params[:'AutoRowsFit'] = self.auto_rows_fit if !self.auto_rows_fit.nil?
|
|
128
|
+
query_params[:'AutoColumnsFit'] = self.auto_columns_fit if !self.auto_columns_fit.nil?
|
|
113
129
|
query_params[:'region'] = self.region if !self.region.nil?
|
|
114
130
|
query_params[:'password'] = self.password if !self.password.nil?
|
|
115
131
|
|
|
@@ -35,6 +35,8 @@ module AsposeCellsCloud
|
|
|
35
35
|
attr_accessor :out_path
|
|
36
36
|
attr_accessor :out_storage_name
|
|
37
37
|
attr_accessor :fonts_location
|
|
38
|
+
attr_accessor :auto_rows_fit
|
|
39
|
+
attr_accessor :auto_columns_fit
|
|
38
40
|
attr_accessor :region
|
|
39
41
|
attr_accessor :password
|
|
40
42
|
|
|
@@ -60,6 +62,14 @@ module AsposeCellsCloud
|
|
|
60
62
|
self.fonts_location = attributes[:'fontsLocation']
|
|
61
63
|
end
|
|
62
64
|
|
|
65
|
+
if attributes.has_key?(:'AutoRowsFit')
|
|
66
|
+
self.auto_rows_fit = attributes[:'AutoRowsFit']
|
|
67
|
+
end
|
|
68
|
+
|
|
69
|
+
if attributes.has_key?(:'AutoColumnsFit')
|
|
70
|
+
self.auto_columns_fit = attributes[:'AutoColumnsFit']
|
|
71
|
+
end
|
|
72
|
+
|
|
63
73
|
if attributes.has_key?(:'region')
|
|
64
74
|
self.region = attributes[:'region']
|
|
65
75
|
end
|
|
@@ -76,6 +86,8 @@ module AsposeCellsCloud
|
|
|
76
86
|
:'out_path' => :'outPath',
|
|
77
87
|
:'out_storage_name' => :'outStorageName',
|
|
78
88
|
:'fonts_location' => :'fontsLocation',
|
|
89
|
+
:'auto_rows_fit' => :'AutoRowsFit',
|
|
90
|
+
:'auto_columns_fit' => :'AutoColumnsFit',
|
|
79
91
|
:'region' => :'region',
|
|
80
92
|
:'password' => :'password'
|
|
81
93
|
}
|
|
@@ -88,6 +100,8 @@ module AsposeCellsCloud
|
|
|
88
100
|
:'out_path' => :'String',
|
|
89
101
|
:'out_storage_name' => :'String',
|
|
90
102
|
:'fonts_location' => :'String',
|
|
103
|
+
:'auto_rows_fit' => :'BOOLEAN',
|
|
104
|
+
:'auto_columns_fit' => :'BOOLEAN',
|
|
91
105
|
:'region' => :'String',
|
|
92
106
|
:'password' => :'String'
|
|
93
107
|
}
|
|
@@ -110,6 +124,8 @@ module AsposeCellsCloud
|
|
|
110
124
|
query_params[:'outPath'] = self.out_path if !self.out_path.nil?
|
|
111
125
|
query_params[:'outStorageName'] = self.out_storage_name if !self.out_storage_name.nil?
|
|
112
126
|
query_params[:'fontsLocation'] = self.fonts_location if !self.fonts_location.nil?
|
|
127
|
+
query_params[:'AutoRowsFit'] = self.auto_rows_fit if !self.auto_rows_fit.nil?
|
|
128
|
+
query_params[:'AutoColumnsFit'] = self.auto_columns_fit if !self.auto_columns_fit.nil?
|
|
113
129
|
query_params[:'region'] = self.region if !self.region.nil?
|
|
114
130
|
query_params[:'password'] = self.password if !self.password.nil?
|
|
115
131
|
|
|
@@ -37,6 +37,8 @@ module AsposeCellsCloud
|
|
|
37
37
|
attr_accessor :out_path
|
|
38
38
|
attr_accessor :out_storage_name
|
|
39
39
|
attr_accessor :fonts_location
|
|
40
|
+
attr_accessor :auto_rows_fit
|
|
41
|
+
attr_accessor :auto_columns_fit
|
|
40
42
|
attr_accessor :region
|
|
41
43
|
attr_accessor :password
|
|
42
44
|
|
|
@@ -70,6 +72,14 @@ module AsposeCellsCloud
|
|
|
70
72
|
self.fonts_location = attributes[:'fontsLocation']
|
|
71
73
|
end
|
|
72
74
|
|
|
75
|
+
if attributes.has_key?(:'AutoRowsFit')
|
|
76
|
+
self.auto_rows_fit = attributes[:'AutoRowsFit']
|
|
77
|
+
end
|
|
78
|
+
|
|
79
|
+
if attributes.has_key?(:'AutoColumnsFit')
|
|
80
|
+
self.auto_columns_fit = attributes[:'AutoColumnsFit']
|
|
81
|
+
end
|
|
82
|
+
|
|
73
83
|
if attributes.has_key?(:'region')
|
|
74
84
|
self.region = attributes[:'region']
|
|
75
85
|
end
|
|
@@ -88,6 +98,8 @@ module AsposeCellsCloud
|
|
|
88
98
|
:'out_path' => :'outPath',
|
|
89
99
|
:'out_storage_name' => :'outStorageName',
|
|
90
100
|
:'fonts_location' => :'fontsLocation',
|
|
101
|
+
:'auto_rows_fit' => :'AutoRowsFit',
|
|
102
|
+
:'auto_columns_fit' => :'AutoColumnsFit',
|
|
91
103
|
:'region' => :'region',
|
|
92
104
|
:'password' => :'password'
|
|
93
105
|
}
|
|
@@ -102,6 +114,8 @@ module AsposeCellsCloud
|
|
|
102
114
|
:'out_path' => :'String',
|
|
103
115
|
:'out_storage_name' => :'String',
|
|
104
116
|
:'fonts_location' => :'String',
|
|
117
|
+
:'auto_rows_fit' => :'BOOLEAN',
|
|
118
|
+
:'auto_columns_fit' => :'BOOLEAN',
|
|
105
119
|
:'region' => :'String',
|
|
106
120
|
:'password' => :'String'
|
|
107
121
|
}
|
|
@@ -134,6 +148,8 @@ module AsposeCellsCloud
|
|
|
134
148
|
query_params[:'outPath'] = self.out_path if !self.out_path.nil?
|
|
135
149
|
query_params[:'outStorageName'] = self.out_storage_name if !self.out_storage_name.nil?
|
|
136
150
|
query_params[:'fontsLocation'] = self.fonts_location if !self.fonts_location.nil?
|
|
151
|
+
query_params[:'AutoRowsFit'] = self.auto_rows_fit if !self.auto_rows_fit.nil?
|
|
152
|
+
query_params[:'AutoColumnsFit'] = self.auto_columns_fit if !self.auto_columns_fit.nil?
|
|
137
153
|
query_params[:'region'] = self.region if !self.region.nil?
|
|
138
154
|
query_params[:'password'] = self.password if !self.password.nil?
|
|
139
155
|
|
|
@@ -37,6 +37,8 @@ module AsposeCellsCloud
|
|
|
37
37
|
attr_accessor :out_path
|
|
38
38
|
attr_accessor :out_storage_name
|
|
39
39
|
attr_accessor :fonts_location
|
|
40
|
+
attr_accessor :auto_rows_fit
|
|
41
|
+
attr_accessor :auto_columns_fit
|
|
40
42
|
attr_accessor :region
|
|
41
43
|
attr_accessor :password
|
|
42
44
|
|
|
@@ -70,6 +72,14 @@ module AsposeCellsCloud
|
|
|
70
72
|
self.fonts_location = attributes[:'fontsLocation']
|
|
71
73
|
end
|
|
72
74
|
|
|
75
|
+
if attributes.has_key?(:'AutoRowsFit')
|
|
76
|
+
self.auto_rows_fit = attributes[:'AutoRowsFit']
|
|
77
|
+
end
|
|
78
|
+
|
|
79
|
+
if attributes.has_key?(:'AutoColumnsFit')
|
|
80
|
+
self.auto_columns_fit = attributes[:'AutoColumnsFit']
|
|
81
|
+
end
|
|
82
|
+
|
|
73
83
|
if attributes.has_key?(:'region')
|
|
74
84
|
self.region = attributes[:'region']
|
|
75
85
|
end
|
|
@@ -88,6 +98,8 @@ module AsposeCellsCloud
|
|
|
88
98
|
:'out_path' => :'outPath',
|
|
89
99
|
:'out_storage_name' => :'outStorageName',
|
|
90
100
|
:'fonts_location' => :'fontsLocation',
|
|
101
|
+
:'auto_rows_fit' => :'AutoRowsFit',
|
|
102
|
+
:'auto_columns_fit' => :'AutoColumnsFit',
|
|
91
103
|
:'region' => :'region',
|
|
92
104
|
:'password' => :'password'
|
|
93
105
|
}
|
|
@@ -102,6 +114,8 @@ module AsposeCellsCloud
|
|
|
102
114
|
:'out_path' => :'String',
|
|
103
115
|
:'out_storage_name' => :'String',
|
|
104
116
|
:'fonts_location' => :'String',
|
|
117
|
+
:'auto_rows_fit' => :'BOOLEAN',
|
|
118
|
+
:'auto_columns_fit' => :'BOOLEAN',
|
|
105
119
|
:'region' => :'String',
|
|
106
120
|
:'password' => :'String'
|
|
107
121
|
}
|
|
@@ -134,6 +148,8 @@ module AsposeCellsCloud
|
|
|
134
148
|
query_params[:'outPath'] = self.out_path if !self.out_path.nil?
|
|
135
149
|
query_params[:'outStorageName'] = self.out_storage_name if !self.out_storage_name.nil?
|
|
136
150
|
query_params[:'fontsLocation'] = self.fonts_location if !self.fonts_location.nil?
|
|
151
|
+
query_params[:'AutoRowsFit'] = self.auto_rows_fit if !self.auto_rows_fit.nil?
|
|
152
|
+
query_params[:'AutoColumnsFit'] = self.auto_columns_fit if !self.auto_columns_fit.nil?
|
|
137
153
|
query_params[:'region'] = self.region if !self.region.nil?
|
|
138
154
|
query_params[:'password'] = self.password if !self.password.nil?
|
|
139
155
|
|
|
@@ -38,6 +38,8 @@ module AsposeCellsCloud
|
|
|
38
38
|
attr_accessor :out_path
|
|
39
39
|
attr_accessor :out_storage_name
|
|
40
40
|
attr_accessor :fonts_location
|
|
41
|
+
attr_accessor :auto_rows_fit
|
|
42
|
+
attr_accessor :auto_columns_fit
|
|
41
43
|
attr_accessor :region
|
|
42
44
|
attr_accessor :password
|
|
43
45
|
|
|
@@ -75,6 +77,14 @@ module AsposeCellsCloud
|
|
|
75
77
|
self.fonts_location = attributes[:'fontsLocation']
|
|
76
78
|
end
|
|
77
79
|
|
|
80
|
+
if attributes.has_key?(:'AutoRowsFit')
|
|
81
|
+
self.auto_rows_fit = attributes[:'AutoRowsFit']
|
|
82
|
+
end
|
|
83
|
+
|
|
84
|
+
if attributes.has_key?(:'AutoColumnsFit')
|
|
85
|
+
self.auto_columns_fit = attributes[:'AutoColumnsFit']
|
|
86
|
+
end
|
|
87
|
+
|
|
78
88
|
if attributes.has_key?(:'region')
|
|
79
89
|
self.region = attributes[:'region']
|
|
80
90
|
end
|
|
@@ -94,6 +104,8 @@ module AsposeCellsCloud
|
|
|
94
104
|
:'out_path' => :'outPath',
|
|
95
105
|
:'out_storage_name' => :'outStorageName',
|
|
96
106
|
:'fonts_location' => :'fontsLocation',
|
|
107
|
+
:'auto_rows_fit' => :'AutoRowsFit',
|
|
108
|
+
:'auto_columns_fit' => :'AutoColumnsFit',
|
|
97
109
|
:'region' => :'region',
|
|
98
110
|
:'password' => :'password'
|
|
99
111
|
}
|
|
@@ -109,6 +121,8 @@ module AsposeCellsCloud
|
|
|
109
121
|
:'out_path' => :'String',
|
|
110
122
|
:'out_storage_name' => :'String',
|
|
111
123
|
:'fonts_location' => :'String',
|
|
124
|
+
:'auto_rows_fit' => :'BOOLEAN',
|
|
125
|
+
:'auto_columns_fit' => :'BOOLEAN',
|
|
112
126
|
:'region' => :'String',
|
|
113
127
|
:'password' => :'String'
|
|
114
128
|
}
|
|
@@ -146,6 +160,8 @@ module AsposeCellsCloud
|
|
|
146
160
|
query_params[:'outPath'] = self.out_path if !self.out_path.nil?
|
|
147
161
|
query_params[:'outStorageName'] = self.out_storage_name if !self.out_storage_name.nil?
|
|
148
162
|
query_params[:'fontsLocation'] = self.fonts_location if !self.fonts_location.nil?
|
|
163
|
+
query_params[:'AutoRowsFit'] = self.auto_rows_fit if !self.auto_rows_fit.nil?
|
|
164
|
+
query_params[:'AutoColumnsFit'] = self.auto_columns_fit if !self.auto_columns_fit.nil?
|
|
149
165
|
query_params[:'region'] = self.region if !self.region.nil?
|
|
150
166
|
query_params[:'password'] = self.password if !self.password.nil?
|
|
151
167
|
|
|
@@ -37,6 +37,8 @@ module AsposeCellsCloud
|
|
|
37
37
|
attr_accessor :out_path
|
|
38
38
|
attr_accessor :out_storage_name
|
|
39
39
|
attr_accessor :fonts_location
|
|
40
|
+
attr_accessor :auto_rows_fit
|
|
41
|
+
attr_accessor :auto_columns_fit
|
|
40
42
|
attr_accessor :region
|
|
41
43
|
attr_accessor :password
|
|
42
44
|
|
|
@@ -70,6 +72,14 @@ module AsposeCellsCloud
|
|
|
70
72
|
self.fonts_location = attributes[:'fontsLocation']
|
|
71
73
|
end
|
|
72
74
|
|
|
75
|
+
if attributes.has_key?(:'AutoRowsFit')
|
|
76
|
+
self.auto_rows_fit = attributes[:'AutoRowsFit']
|
|
77
|
+
end
|
|
78
|
+
|
|
79
|
+
if attributes.has_key?(:'AutoColumnsFit')
|
|
80
|
+
self.auto_columns_fit = attributes[:'AutoColumnsFit']
|
|
81
|
+
end
|
|
82
|
+
|
|
73
83
|
if attributes.has_key?(:'region')
|
|
74
84
|
self.region = attributes[:'region']
|
|
75
85
|
end
|
|
@@ -88,6 +98,8 @@ module AsposeCellsCloud
|
|
|
88
98
|
:'out_path' => :'outPath',
|
|
89
99
|
:'out_storage_name' => :'outStorageName',
|
|
90
100
|
:'fonts_location' => :'fontsLocation',
|
|
101
|
+
:'auto_rows_fit' => :'AutoRowsFit',
|
|
102
|
+
:'auto_columns_fit' => :'AutoColumnsFit',
|
|
91
103
|
:'region' => :'region',
|
|
92
104
|
:'password' => :'password'
|
|
93
105
|
}
|
|
@@ -102,6 +114,8 @@ module AsposeCellsCloud
|
|
|
102
114
|
:'out_path' => :'String',
|
|
103
115
|
:'out_storage_name' => :'String',
|
|
104
116
|
:'fonts_location' => :'String',
|
|
117
|
+
:'auto_rows_fit' => :'BOOLEAN',
|
|
118
|
+
:'auto_columns_fit' => :'BOOLEAN',
|
|
105
119
|
:'region' => :'String',
|
|
106
120
|
:'password' => :'String'
|
|
107
121
|
}
|
|
@@ -134,6 +148,8 @@ module AsposeCellsCloud
|
|
|
134
148
|
query_params[:'outPath'] = self.out_path if !self.out_path.nil?
|
|
135
149
|
query_params[:'outStorageName'] = self.out_storage_name if !self.out_storage_name.nil?
|
|
136
150
|
query_params[:'fontsLocation'] = self.fonts_location if !self.fonts_location.nil?
|
|
151
|
+
query_params[:'AutoRowsFit'] = self.auto_rows_fit if !self.auto_rows_fit.nil?
|
|
152
|
+
query_params[:'AutoColumnsFit'] = self.auto_columns_fit if !self.auto_columns_fit.nil?
|
|
137
153
|
query_params[:'region'] = self.region if !self.region.nil?
|
|
138
154
|
query_params[:'password'] = self.password if !self.password.nil?
|
|
139
155
|
|
|
@@ -37,6 +37,8 @@ module AsposeCellsCloud
|
|
|
37
37
|
attr_accessor :out_path
|
|
38
38
|
attr_accessor :out_storage_name
|
|
39
39
|
attr_accessor :fonts_location
|
|
40
|
+
attr_accessor :auto_rows_fit
|
|
41
|
+
attr_accessor :auto_columns_fit
|
|
40
42
|
attr_accessor :region
|
|
41
43
|
attr_accessor :password
|
|
42
44
|
|
|
@@ -70,6 +72,14 @@ module AsposeCellsCloud
|
|
|
70
72
|
self.fonts_location = attributes[:'fontsLocation']
|
|
71
73
|
end
|
|
72
74
|
|
|
75
|
+
if attributes.has_key?(:'AutoRowsFit')
|
|
76
|
+
self.auto_rows_fit = attributes[:'AutoRowsFit']
|
|
77
|
+
end
|
|
78
|
+
|
|
79
|
+
if attributes.has_key?(:'AutoColumnsFit')
|
|
80
|
+
self.auto_columns_fit = attributes[:'AutoColumnsFit']
|
|
81
|
+
end
|
|
82
|
+
|
|
73
83
|
if attributes.has_key?(:'region')
|
|
74
84
|
self.region = attributes[:'region']
|
|
75
85
|
end
|
|
@@ -88,6 +98,8 @@ module AsposeCellsCloud
|
|
|
88
98
|
:'out_path' => :'outPath',
|
|
89
99
|
:'out_storage_name' => :'outStorageName',
|
|
90
100
|
:'fonts_location' => :'fontsLocation',
|
|
101
|
+
:'auto_rows_fit' => :'AutoRowsFit',
|
|
102
|
+
:'auto_columns_fit' => :'AutoColumnsFit',
|
|
91
103
|
:'region' => :'region',
|
|
92
104
|
:'password' => :'password'
|
|
93
105
|
}
|
|
@@ -102,6 +114,8 @@ module AsposeCellsCloud
|
|
|
102
114
|
:'out_path' => :'String',
|
|
103
115
|
:'out_storage_name' => :'String',
|
|
104
116
|
:'fonts_location' => :'String',
|
|
117
|
+
:'auto_rows_fit' => :'BOOLEAN',
|
|
118
|
+
:'auto_columns_fit' => :'BOOLEAN',
|
|
105
119
|
:'region' => :'String',
|
|
106
120
|
:'password' => :'String'
|
|
107
121
|
}
|
|
@@ -134,6 +148,8 @@ module AsposeCellsCloud
|
|
|
134
148
|
query_params[:'outPath'] = self.out_path if !self.out_path.nil?
|
|
135
149
|
query_params[:'outStorageName'] = self.out_storage_name if !self.out_storage_name.nil?
|
|
136
150
|
query_params[:'fontsLocation'] = self.fonts_location if !self.fonts_location.nil?
|
|
151
|
+
query_params[:'AutoRowsFit'] = self.auto_rows_fit if !self.auto_rows_fit.nil?
|
|
152
|
+
query_params[:'AutoColumnsFit'] = self.auto_columns_fit if !self.auto_columns_fit.nil?
|
|
137
153
|
query_params[:'region'] = self.region if !self.region.nil?
|
|
138
154
|
query_params[:'password'] = self.password if !self.password.nil?
|
|
139
155
|
|