aspose_words_cloud 19.12.0 → 20.1.0

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.
Files changed (29) hide show
  1. checksums.yaml +4 -4
  2. data/lib/aspose_words_cloud/models/bmp_save_options_data.rb +11 -11
  3. data/lib/aspose_words_cloud/models/doc_save_options_data.rb +1 -11
  4. data/lib/aspose_words_cloud/models/emf_save_options_data.rb +11 -11
  5. data/lib/aspose_words_cloud/models/epub_save_options_data.rb +1 -11
  6. data/lib/aspose_words_cloud/models/fixed_page_save_options_data.rb +11 -11
  7. data/lib/aspose_words_cloud/models/gif_save_options_data.rb +11 -11
  8. data/lib/aspose_words_cloud/models/html_fixed_save_options_data.rb +11 -11
  9. data/lib/aspose_words_cloud/models/html_save_options_data.rb +1 -11
  10. data/lib/aspose_words_cloud/models/image_save_options_data.rb +11 -11
  11. data/lib/aspose_words_cloud/models/jpeg_save_options_data.rb +11 -11
  12. data/lib/aspose_words_cloud/models/mhtml_save_options_data.rb +1 -11
  13. data/lib/aspose_words_cloud/models/odt_save_options_data.rb +1 -11
  14. data/lib/aspose_words_cloud/models/ooxml_save_options_data.rb +1 -11
  15. data/lib/aspose_words_cloud/models/pcl_save_options_data.rb +11 -11
  16. data/lib/aspose_words_cloud/models/pdf_save_options_data.rb +11 -11
  17. data/lib/aspose_words_cloud/models/png_save_options_data.rb +11 -11
  18. data/lib/aspose_words_cloud/models/ps_save_options_data.rb +11 -11
  19. data/lib/aspose_words_cloud/models/rtf_save_options_data.rb +1 -11
  20. data/lib/aspose_words_cloud/models/save_options_data.rb +1 -11
  21. data/lib/aspose_words_cloud/models/svg_save_options_data.rb +11 -11
  22. data/lib/aspose_words_cloud/models/text_save_options_data.rb +1 -11
  23. data/lib/aspose_words_cloud/models/tiff_save_options_data.rb +11 -11
  24. data/lib/aspose_words_cloud/models/word_ml_save_options_data.rb +1 -11
  25. data/lib/aspose_words_cloud/models/xaml_fixed_save_options_data.rb +11 -11
  26. data/lib/aspose_words_cloud/models/xaml_flow_save_options_data.rb +1 -11
  27. data/lib/aspose_words_cloud/models/xps_save_options_data.rb +11 -11
  28. data/lib/aspose_words_cloud/version.rb +1 -1
  29. metadata +2 -2
@@ -31,9 +31,6 @@ module AsposeWordsCloud
31
31
 
32
32
  # Container class for pcl save options.
33
33
  class PclSaveOptionsData
34
- # Gets or sets a value determining how colors are rendered. { Normal | Grayscale}.
35
- attr_accessor :color_mode
36
-
37
34
  # Gets or sets format of save.
38
35
  attr_accessor :save_format
39
36
 
@@ -58,6 +55,9 @@ module AsposeWordsCloud
58
55
  # Gets or sets a value determining if fields should be updated before saving the document to a fixed page format. Default value for this property is. true
59
56
  attr_accessor :update_fields
60
57
 
58
+ # Gets or sets a value determining how colors are rendered. { Normal | Grayscale}.
59
+ attr_accessor :color_mode
60
+
61
61
  # Gets or sets determines the quality of the JPEG images inside PDF document.
62
62
  attr_accessor :jpeg_quality
63
63
 
@@ -86,7 +86,6 @@ module AsposeWordsCloud
86
86
  # Attribute mapping from ruby-style variable name to JSON key.
87
87
  def self.attribute_map
88
88
  {
89
- :'color_mode' => :'ColorMode',
90
89
  :'save_format' => :'SaveFormat',
91
90
  :'file_name' => :'FileName',
92
91
  :'dml_rendering_mode' => :'DmlRenderingMode',
@@ -95,6 +94,7 @@ module AsposeWordsCloud
95
94
  :'update_last_saved_time_property' => :'UpdateLastSavedTimeProperty',
96
95
  :'update_sdt_content' => :'UpdateSdtContent',
97
96
  :'update_fields' => :'UpdateFields',
97
+ :'color_mode' => :'ColorMode',
98
98
  :'jpeg_quality' => :'JpegQuality',
99
99
  :'metafile_rendering_options' => :'MetafileRenderingOptions',
100
100
  :'numeral_format' => :'NumeralFormat',
@@ -109,7 +109,6 @@ module AsposeWordsCloud
109
109
  # Attribute type mapping.
110
110
  def self.swagger_types
111
111
  {
112
- :'color_mode' => :'String',
113
112
  :'save_format' => :'String',
114
113
  :'file_name' => :'String',
115
114
  :'dml_rendering_mode' => :'String',
@@ -118,6 +117,7 @@ module AsposeWordsCloud
118
117
  :'update_last_saved_time_property' => :'BOOLEAN',
119
118
  :'update_sdt_content' => :'BOOLEAN',
120
119
  :'update_fields' => :'BOOLEAN',
120
+ :'color_mode' => :'String',
121
121
  :'jpeg_quality' => :'Integer',
122
122
  :'metafile_rendering_options' => :'MetafileRenderingOptionsData',
123
123
  :'numeral_format' => :'String',
@@ -137,10 +137,6 @@ module AsposeWordsCloud
137
137
  # convert string to symbol for hash key
138
138
  attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
139
139
 
140
- if attributes.key?(:'ColorMode')
141
- self.color_mode = attributes[:'ColorMode']
142
- end
143
-
144
140
  if attributes.key?(:'SaveFormat')
145
141
  self.save_format = attributes[:'SaveFormat']
146
142
  end
@@ -173,6 +169,10 @@ module AsposeWordsCloud
173
169
  self.update_fields = attributes[:'UpdateFields']
174
170
  end
175
171
 
172
+ if attributes.key?(:'ColorMode')
173
+ self.color_mode = attributes[:'ColorMode']
174
+ end
175
+
176
176
  if attributes.key?(:'JpegQuality')
177
177
  self.jpeg_quality = attributes[:'JpegQuality']
178
178
  end
@@ -225,7 +225,6 @@ module AsposeWordsCloud
225
225
  def ==(other)
226
226
  return true if self.equal?(other)
227
227
  self.class == other.class &&
228
- color_mode == other.color_mode &&
229
228
  save_format == other.save_format &&
230
229
  file_name == other.file_name &&
231
230
  dml_rendering_mode == other.dml_rendering_mode &&
@@ -234,6 +233,7 @@ module AsposeWordsCloud
234
233
  update_last_saved_time_property == other.update_last_saved_time_property &&
235
234
  update_sdt_content == other.update_sdt_content &&
236
235
  update_fields == other.update_fields &&
236
+ color_mode == other.color_mode &&
237
237
  jpeg_quality == other.jpeg_quality &&
238
238
  metafile_rendering_options == other.metafile_rendering_options &&
239
239
  numeral_format == other.numeral_format &&
@@ -253,7 +253,7 @@ module AsposeWordsCloud
253
253
  # Calculates hash code according to all attributes.
254
254
  # @return [Fixnum] Hash code
255
255
  def hash
256
- [color_mode, save_format, file_name, dml_rendering_mode, dml_effects_rendering_mode, zip_output, update_last_saved_time_property, update_sdt_content, update_fields, jpeg_quality, metafile_rendering_options, numeral_format, optimize_output, page_count, page_index, falllback_font_name, rasterize_transformed_elements].hash
256
+ [save_format, file_name, dml_rendering_mode, dml_effects_rendering_mode, zip_output, update_last_saved_time_property, update_sdt_content, update_fields, color_mode, jpeg_quality, metafile_rendering_options, numeral_format, optimize_output, page_count, page_index, falllback_font_name, rasterize_transformed_elements].hash
257
257
  end
258
258
 
259
259
  # Builds the object from hash
@@ -31,9 +31,6 @@ module AsposeWordsCloud
31
31
 
32
32
  # container class for pdf save options.
33
33
  class PdfSaveOptionsData
34
- # Gets or sets a value determining how colors are rendered. { Normal | Grayscale}.
35
- attr_accessor :color_mode
36
-
37
34
  # Gets or sets format of save.
38
35
  attr_accessor :save_format
39
36
 
@@ -58,6 +55,9 @@ module AsposeWordsCloud
58
55
  # Gets or sets a value determining if fields should be updated before saving the document to a fixed page format. Default value for this property is. true
59
56
  attr_accessor :update_fields
60
57
 
58
+ # Gets or sets a value determining how colors are rendered. { Normal | Grayscale}.
59
+ attr_accessor :color_mode
60
+
61
61
  # Gets or sets determines the quality of the JPEG images inside PDF document.
62
62
  attr_accessor :jpeg_quality
63
63
 
@@ -173,7 +173,6 @@ module AsposeWordsCloud
173
173
  # Attribute mapping from ruby-style variable name to JSON key.
174
174
  def self.attribute_map
175
175
  {
176
- :'color_mode' => :'ColorMode',
177
176
  :'save_format' => :'SaveFormat',
178
177
  :'file_name' => :'FileName',
179
178
  :'dml_rendering_mode' => :'DmlRenderingMode',
@@ -182,6 +181,7 @@ module AsposeWordsCloud
182
181
  :'update_last_saved_time_property' => :'UpdateLastSavedTimeProperty',
183
182
  :'update_sdt_content' => :'UpdateSdtContent',
184
183
  :'update_fields' => :'UpdateFields',
184
+ :'color_mode' => :'ColorMode',
185
185
  :'jpeg_quality' => :'JpegQuality',
186
186
  :'metafile_rendering_options' => :'MetafileRenderingOptions',
187
187
  :'numeral_format' => :'NumeralFormat',
@@ -218,7 +218,6 @@ module AsposeWordsCloud
218
218
  # Attribute type mapping.
219
219
  def self.swagger_types
220
220
  {
221
- :'color_mode' => :'String',
222
221
  :'save_format' => :'String',
223
222
  :'file_name' => :'String',
224
223
  :'dml_rendering_mode' => :'String',
@@ -227,6 +226,7 @@ module AsposeWordsCloud
227
226
  :'update_last_saved_time_property' => :'BOOLEAN',
228
227
  :'update_sdt_content' => :'BOOLEAN',
229
228
  :'update_fields' => :'BOOLEAN',
229
+ :'color_mode' => :'String',
230
230
  :'jpeg_quality' => :'Integer',
231
231
  :'metafile_rendering_options' => :'MetafileRenderingOptionsData',
232
232
  :'numeral_format' => :'String',
@@ -268,10 +268,6 @@ module AsposeWordsCloud
268
268
  # convert string to symbol for hash key
269
269
  attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
270
270
 
271
- if attributes.key?(:'ColorMode')
272
- self.color_mode = attributes[:'ColorMode']
273
- end
274
-
275
271
  if attributes.key?(:'SaveFormat')
276
272
  self.save_format = attributes[:'SaveFormat']
277
273
  end
@@ -304,6 +300,10 @@ module AsposeWordsCloud
304
300
  self.update_fields = attributes[:'UpdateFields']
305
301
  end
306
302
 
303
+ if attributes.key?(:'ColorMode')
304
+ self.color_mode = attributes[:'ColorMode']
305
+ end
306
+
307
307
  if attributes.key?(:'JpegQuality')
308
308
  self.jpeg_quality = attributes[:'JpegQuality']
309
309
  end
@@ -460,7 +460,6 @@ module AsposeWordsCloud
460
460
  def ==(other)
461
461
  return true if self.equal?(other)
462
462
  self.class == other.class &&
463
- color_mode == other.color_mode &&
464
463
  save_format == other.save_format &&
465
464
  file_name == other.file_name &&
466
465
  dml_rendering_mode == other.dml_rendering_mode &&
@@ -469,6 +468,7 @@ module AsposeWordsCloud
469
468
  update_last_saved_time_property == other.update_last_saved_time_property &&
470
469
  update_sdt_content == other.update_sdt_content &&
471
470
  update_fields == other.update_fields &&
471
+ color_mode == other.color_mode &&
472
472
  jpeg_quality == other.jpeg_quality &&
473
473
  metafile_rendering_options == other.metafile_rendering_options &&
474
474
  numeral_format == other.numeral_format &&
@@ -510,7 +510,7 @@ module AsposeWordsCloud
510
510
  # Calculates hash code according to all attributes.
511
511
  # @return [Fixnum] Hash code
512
512
  def hash
513
- [color_mode, save_format, file_name, dml_rendering_mode, dml_effects_rendering_mode, zip_output, update_last_saved_time_property, update_sdt_content, update_fields, jpeg_quality, metafile_rendering_options, numeral_format, optimize_output, page_count, page_index, compliance, create_note_hyperlinks, custom_properties_export, digital_signature_details, display_doc_title, downsample_options, embed_full_fonts, encryption_details, escape_uri, export_document_structure, font_embedding_mode, header_footer_bookmarks_export_mode, image_color_space_export_mode, image_compression, open_hyperlinks_in_new_window, outline_options, page_mode, preblend_images, preserve_form_fields, text_compression, use_book_fold_printing_settings, use_core_fonts, zoom_behavior, zoom_factor].hash
513
+ [save_format, file_name, dml_rendering_mode, dml_effects_rendering_mode, zip_output, update_last_saved_time_property, update_sdt_content, update_fields, color_mode, jpeg_quality, metafile_rendering_options, numeral_format, optimize_output, page_count, page_index, compliance, create_note_hyperlinks, custom_properties_export, digital_signature_details, display_doc_title, downsample_options, embed_full_fonts, encryption_details, escape_uri, export_document_structure, font_embedding_mode, header_footer_bookmarks_export_mode, image_color_space_export_mode, image_compression, open_hyperlinks_in_new_window, outline_options, page_mode, preblend_images, preserve_form_fields, text_compression, use_book_fold_printing_settings, use_core_fonts, zoom_behavior, zoom_factor].hash
514
514
  end
515
515
 
516
516
  # Builds the object from hash
@@ -31,9 +31,6 @@ module AsposeWordsCloud
31
31
 
32
32
  # container class for png save options.
33
33
  class PngSaveOptionsData
34
- # Gets or sets a value determining how colors are rendered. { Normal | Grayscale}.
35
- attr_accessor :color_mode
36
-
37
34
  # Gets or sets format of save.
38
35
  attr_accessor :save_format
39
36
 
@@ -58,6 +55,9 @@ module AsposeWordsCloud
58
55
  # Gets or sets a value determining if fields should be updated before saving the document to a fixed page format. Default value for this property is. true
59
56
  attr_accessor :update_fields
60
57
 
58
+ # Gets or sets a value determining how colors are rendered. { Normal | Grayscale}.
59
+ attr_accessor :color_mode
60
+
61
61
  # Gets or sets determines the quality of the JPEG images inside PDF document.
62
62
  attr_accessor :jpeg_quality
63
63
 
@@ -119,7 +119,6 @@ module AsposeWordsCloud
119
119
  # Attribute mapping from ruby-style variable name to JSON key.
120
120
  def self.attribute_map
121
121
  {
122
- :'color_mode' => :'ColorMode',
123
122
  :'save_format' => :'SaveFormat',
124
123
  :'file_name' => :'FileName',
125
124
  :'dml_rendering_mode' => :'DmlRenderingMode',
@@ -128,6 +127,7 @@ module AsposeWordsCloud
128
127
  :'update_last_saved_time_property' => :'UpdateLastSavedTimeProperty',
129
128
  :'update_sdt_content' => :'UpdateSdtContent',
130
129
  :'update_fields' => :'UpdateFields',
130
+ :'color_mode' => :'ColorMode',
131
131
  :'jpeg_quality' => :'JpegQuality',
132
132
  :'metafile_rendering_options' => :'MetafileRenderingOptions',
133
133
  :'numeral_format' => :'NumeralFormat',
@@ -153,7 +153,6 @@ module AsposeWordsCloud
153
153
  # Attribute type mapping.
154
154
  def self.swagger_types
155
155
  {
156
- :'color_mode' => :'String',
157
156
  :'save_format' => :'String',
158
157
  :'file_name' => :'String',
159
158
  :'dml_rendering_mode' => :'String',
@@ -162,6 +161,7 @@ module AsposeWordsCloud
162
161
  :'update_last_saved_time_property' => :'BOOLEAN',
163
162
  :'update_sdt_content' => :'BOOLEAN',
164
163
  :'update_fields' => :'BOOLEAN',
164
+ :'color_mode' => :'String',
165
165
  :'jpeg_quality' => :'Integer',
166
166
  :'metafile_rendering_options' => :'MetafileRenderingOptionsData',
167
167
  :'numeral_format' => :'String',
@@ -192,10 +192,6 @@ module AsposeWordsCloud
192
192
  # convert string to symbol for hash key
193
193
  attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
194
194
 
195
- if attributes.key?(:'ColorMode')
196
- self.color_mode = attributes[:'ColorMode']
197
- end
198
-
199
195
  if attributes.key?(:'SaveFormat')
200
196
  self.save_format = attributes[:'SaveFormat']
201
197
  end
@@ -228,6 +224,10 @@ module AsposeWordsCloud
228
224
  self.update_fields = attributes[:'UpdateFields']
229
225
  end
230
226
 
227
+ if attributes.key?(:'ColorMode')
228
+ self.color_mode = attributes[:'ColorMode']
229
+ end
230
+
231
231
  if attributes.key?(:'JpegQuality')
232
232
  self.jpeg_quality = attributes[:'JpegQuality']
233
233
  end
@@ -324,7 +324,6 @@ module AsposeWordsCloud
324
324
  def ==(other)
325
325
  return true if self.equal?(other)
326
326
  self.class == other.class &&
327
- color_mode == other.color_mode &&
328
327
  save_format == other.save_format &&
329
328
  file_name == other.file_name &&
330
329
  dml_rendering_mode == other.dml_rendering_mode &&
@@ -333,6 +332,7 @@ module AsposeWordsCloud
333
332
  update_last_saved_time_property == other.update_last_saved_time_property &&
334
333
  update_sdt_content == other.update_sdt_content &&
335
334
  update_fields == other.update_fields &&
335
+ color_mode == other.color_mode &&
336
336
  jpeg_quality == other.jpeg_quality &&
337
337
  metafile_rendering_options == other.metafile_rendering_options &&
338
338
  numeral_format == other.numeral_format &&
@@ -363,7 +363,7 @@ module AsposeWordsCloud
363
363
  # Calculates hash code according to all attributes.
364
364
  # @return [Fixnum] Hash code
365
365
  def hash
366
- [color_mode, save_format, file_name, dml_rendering_mode, dml_effects_rendering_mode, zip_output, update_last_saved_time_property, update_sdt_content, update_fields, jpeg_quality, metafile_rendering_options, numeral_format, optimize_output, page_count, page_index, graphics_quality_options, horizontal_resolution, image_brightness, image_color_mode, image_contrast, paper_color, pixel_format, resolution, scale, use_anti_aliasing, use_gdi_emf_renderer, use_high_quality_rendering, vertical_resolution].hash
366
+ [save_format, file_name, dml_rendering_mode, dml_effects_rendering_mode, zip_output, update_last_saved_time_property, update_sdt_content, update_fields, color_mode, jpeg_quality, metafile_rendering_options, numeral_format, optimize_output, page_count, page_index, graphics_quality_options, horizontal_resolution, image_brightness, image_color_mode, image_contrast, paper_color, pixel_format, resolution, scale, use_anti_aliasing, use_gdi_emf_renderer, use_high_quality_rendering, vertical_resolution].hash
367
367
  end
368
368
 
369
369
  # Builds the object from hash
@@ -31,9 +31,6 @@ module AsposeWordsCloud
31
31
 
32
32
  # container class for ps save options.
33
33
  class PsSaveOptionsData
34
- # Gets or sets a value determining how colors are rendered. { Normal | Grayscale}.
35
- attr_accessor :color_mode
36
-
37
34
  # Gets or sets format of save.
38
35
  attr_accessor :save_format
39
36
 
@@ -58,6 +55,9 @@ module AsposeWordsCloud
58
55
  # Gets or sets a value determining if fields should be updated before saving the document to a fixed page format. Default value for this property is. true
59
56
  attr_accessor :update_fields
60
57
 
58
+ # Gets or sets a value determining how colors are rendered. { Normal | Grayscale}.
59
+ attr_accessor :color_mode
60
+
61
61
  # Gets or sets determines the quality of the JPEG images inside PDF document.
62
62
  attr_accessor :jpeg_quality
63
63
 
@@ -83,7 +83,6 @@ module AsposeWordsCloud
83
83
  # Attribute mapping from ruby-style variable name to JSON key.
84
84
  def self.attribute_map
85
85
  {
86
- :'color_mode' => :'ColorMode',
87
86
  :'save_format' => :'SaveFormat',
88
87
  :'file_name' => :'FileName',
89
88
  :'dml_rendering_mode' => :'DmlRenderingMode',
@@ -92,6 +91,7 @@ module AsposeWordsCloud
92
91
  :'update_last_saved_time_property' => :'UpdateLastSavedTimeProperty',
93
92
  :'update_sdt_content' => :'UpdateSdtContent',
94
93
  :'update_fields' => :'UpdateFields',
94
+ :'color_mode' => :'ColorMode',
95
95
  :'jpeg_quality' => :'JpegQuality',
96
96
  :'metafile_rendering_options' => :'MetafileRenderingOptions',
97
97
  :'numeral_format' => :'NumeralFormat',
@@ -105,7 +105,6 @@ module AsposeWordsCloud
105
105
  # Attribute type mapping.
106
106
  def self.swagger_types
107
107
  {
108
- :'color_mode' => :'String',
109
108
  :'save_format' => :'String',
110
109
  :'file_name' => :'String',
111
110
  :'dml_rendering_mode' => :'String',
@@ -114,6 +113,7 @@ module AsposeWordsCloud
114
113
  :'update_last_saved_time_property' => :'BOOLEAN',
115
114
  :'update_sdt_content' => :'BOOLEAN',
116
115
  :'update_fields' => :'BOOLEAN',
116
+ :'color_mode' => :'String',
117
117
  :'jpeg_quality' => :'Integer',
118
118
  :'metafile_rendering_options' => :'MetafileRenderingOptionsData',
119
119
  :'numeral_format' => :'String',
@@ -132,10 +132,6 @@ module AsposeWordsCloud
132
132
  # convert string to symbol for hash key
133
133
  attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
134
134
 
135
- if attributes.key?(:'ColorMode')
136
- self.color_mode = attributes[:'ColorMode']
137
- end
138
-
139
135
  if attributes.key?(:'SaveFormat')
140
136
  self.save_format = attributes[:'SaveFormat']
141
137
  end
@@ -168,6 +164,10 @@ module AsposeWordsCloud
168
164
  self.update_fields = attributes[:'UpdateFields']
169
165
  end
170
166
 
167
+ if attributes.key?(:'ColorMode')
168
+ self.color_mode = attributes[:'ColorMode']
169
+ end
170
+
171
171
  if attributes.key?(:'JpegQuality')
172
172
  self.jpeg_quality = attributes[:'JpegQuality']
173
173
  end
@@ -216,7 +216,6 @@ module AsposeWordsCloud
216
216
  def ==(other)
217
217
  return true if self.equal?(other)
218
218
  self.class == other.class &&
219
- color_mode == other.color_mode &&
220
219
  save_format == other.save_format &&
221
220
  file_name == other.file_name &&
222
221
  dml_rendering_mode == other.dml_rendering_mode &&
@@ -225,6 +224,7 @@ module AsposeWordsCloud
225
224
  update_last_saved_time_property == other.update_last_saved_time_property &&
226
225
  update_sdt_content == other.update_sdt_content &&
227
226
  update_fields == other.update_fields &&
227
+ color_mode == other.color_mode &&
228
228
  jpeg_quality == other.jpeg_quality &&
229
229
  metafile_rendering_options == other.metafile_rendering_options &&
230
230
  numeral_format == other.numeral_format &&
@@ -243,7 +243,7 @@ module AsposeWordsCloud
243
243
  # Calculates hash code according to all attributes.
244
244
  # @return [Fixnum] Hash code
245
245
  def hash
246
- [color_mode, save_format, file_name, dml_rendering_mode, dml_effects_rendering_mode, zip_output, update_last_saved_time_property, update_sdt_content, update_fields, jpeg_quality, metafile_rendering_options, numeral_format, optimize_output, page_count, page_index, use_book_fold_printing_settings].hash
246
+ [save_format, file_name, dml_rendering_mode, dml_effects_rendering_mode, zip_output, update_last_saved_time_property, update_sdt_content, update_fields, color_mode, jpeg_quality, metafile_rendering_options, numeral_format, optimize_output, page_count, page_index, use_book_fold_printing_settings].hash
247
247
  end
248
248
 
249
249
  # Builds the object from hash
@@ -31,9 +31,6 @@ module AsposeWordsCloud
31
31
 
32
32
  # container class for rtf save options.
33
33
  class RtfSaveOptionsData
34
- # Gets or sets a value determining how colors are rendered. { Normal | Grayscale}.
35
- attr_accessor :color_mode
36
-
37
34
  # Gets or sets format of save.
38
35
  attr_accessor :save_format
39
36
 
@@ -71,7 +68,6 @@ module AsposeWordsCloud
71
68
  # Attribute mapping from ruby-style variable name to JSON key.
72
69
  def self.attribute_map
73
70
  {
74
- :'color_mode' => :'ColorMode',
75
71
  :'save_format' => :'SaveFormat',
76
72
  :'file_name' => :'FileName',
77
73
  :'dml_rendering_mode' => :'DmlRenderingMode',
@@ -89,7 +85,6 @@ module AsposeWordsCloud
89
85
  # Attribute type mapping.
90
86
  def self.swagger_types
91
87
  {
92
- :'color_mode' => :'String',
93
88
  :'save_format' => :'String',
94
89
  :'file_name' => :'String',
95
90
  :'dml_rendering_mode' => :'String',
@@ -112,10 +107,6 @@ module AsposeWordsCloud
112
107
  # convert string to symbol for hash key
113
108
  attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
114
109
 
115
- if attributes.key?(:'ColorMode')
116
- self.color_mode = attributes[:'ColorMode']
117
- end
118
-
119
110
  if attributes.key?(:'SaveFormat')
120
111
  self.save_format = attributes[:'SaveFormat']
121
112
  end
@@ -180,7 +171,6 @@ module AsposeWordsCloud
180
171
  def ==(other)
181
172
  return true if self.equal?(other)
182
173
  self.class == other.class &&
183
- color_mode == other.color_mode &&
184
174
  save_format == other.save_format &&
185
175
  file_name == other.file_name &&
186
176
  dml_rendering_mode == other.dml_rendering_mode &&
@@ -203,7 +193,7 @@ module AsposeWordsCloud
203
193
  # Calculates hash code according to all attributes.
204
194
  # @return [Fixnum] Hash code
205
195
  def hash
206
- [color_mode, save_format, file_name, dml_rendering_mode, dml_effects_rendering_mode, zip_output, update_last_saved_time_property, update_sdt_content, update_fields, export_compact_size, export_images_for_old_readers, pretty_format].hash
196
+ [save_format, file_name, dml_rendering_mode, dml_effects_rendering_mode, zip_output, update_last_saved_time_property, update_sdt_content, update_fields, export_compact_size, export_images_for_old_readers, pretty_format].hash
207
197
  end
208
198
 
209
199
  # Builds the object from hash
@@ -31,9 +31,6 @@ module AsposeWordsCloud
31
31
 
32
32
  # base container class for save options data.
33
33
  class SaveOptionsData
34
- # Gets or sets a value determining how colors are rendered. { Normal | Grayscale}.
35
- attr_accessor :color_mode
36
-
37
34
  # Gets or sets format of save.
38
35
  attr_accessor :save_format
39
36
 
@@ -62,7 +59,6 @@ module AsposeWordsCloud
62
59
  # Attribute mapping from ruby-style variable name to JSON key.
63
60
  def self.attribute_map
64
61
  {
65
- :'color_mode' => :'ColorMode',
66
62
  :'save_format' => :'SaveFormat',
67
63
  :'file_name' => :'FileName',
68
64
  :'dml_rendering_mode' => :'DmlRenderingMode',
@@ -77,7 +73,6 @@ module AsposeWordsCloud
77
73
  # Attribute type mapping.
78
74
  def self.swagger_types
79
75
  {
80
- :'color_mode' => :'String',
81
76
  :'save_format' => :'String',
82
77
  :'file_name' => :'String',
83
78
  :'dml_rendering_mode' => :'String',
@@ -97,10 +92,6 @@ module AsposeWordsCloud
97
92
  # convert string to symbol for hash key
98
93
  attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
99
94
 
100
- if attributes.key?(:'ColorMode')
101
- self.color_mode = attributes[:'ColorMode']
102
- end
103
-
104
95
  if attributes.key?(:'SaveFormat')
105
96
  self.save_format = attributes[:'SaveFormat']
106
97
  end
@@ -153,7 +144,6 @@ module AsposeWordsCloud
153
144
  def ==(other)
154
145
  return true if self.equal?(other)
155
146
  self.class == other.class &&
156
- color_mode == other.color_mode &&
157
147
  save_format == other.save_format &&
158
148
  file_name == other.file_name &&
159
149
  dml_rendering_mode == other.dml_rendering_mode &&
@@ -173,7 +163,7 @@ module AsposeWordsCloud
173
163
  # Calculates hash code according to all attributes.
174
164
  # @return [Fixnum] Hash code
175
165
  def hash
176
- [color_mode, save_format, file_name, dml_rendering_mode, dml_effects_rendering_mode, zip_output, update_last_saved_time_property, update_sdt_content, update_fields].hash
166
+ [save_format, file_name, dml_rendering_mode, dml_effects_rendering_mode, zip_output, update_last_saved_time_property, update_sdt_content, update_fields].hash
177
167
  end
178
168
 
179
169
  # Builds the object from hash