aspose_slides_cloud 22.8.0 → 22.10.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (51) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +13 -13
  3. data/README.md +17 -1
  4. data/TestData/calibri.ttf +0 -0
  5. data/TestData/test.pptx +0 -0
  6. data/docker-entrypoint.sh +1 -0
  7. data/lib/aspose_slides_cloud/api/slides_api.rb +5413 -8668
  8. data/lib/aspose_slides_cloud/api_client.rb +2 -2
  9. data/lib/aspose_slides_cloud/models/bubble_chart_data_point.rb +5 -1
  10. data/lib/aspose_slides_cloud/models/data_point.rb +42 -2
  11. data/lib/aspose_slides_cloud/models/effect.rb +22 -2
  12. data/lib/aspose_slides_cloud/models/export_options.rb +13 -1
  13. data/lib/aspose_slides_cloud/models/font_subst_rule.rb +231 -0
  14. data/lib/aspose_slides_cloud/models/gif_export_options.rb +2 -1
  15. data/lib/aspose_slides_cloud/models/html5_export_options.rb +2 -1
  16. data/lib/aspose_slides_cloud/models/html_export_options.rb +2 -1
  17. data/lib/aspose_slides_cloud/models/image_export_options.rb +2 -1
  18. data/lib/aspose_slides_cloud/models/image_export_options_base.rb +2 -1
  19. data/lib/aspose_slides_cloud/models/one_value_chart_data_point.rb +5 -1
  20. data/lib/aspose_slides_cloud/models/pdf_export_options.rb +2 -1
  21. data/lib/aspose_slides_cloud/models/pptx_export_options.rb +2 -1
  22. data/lib/aspose_slides_cloud/models/scatter_chart_data_point.rb +5 -1
  23. data/lib/aspose_slides_cloud/models/slide_show_properties.rb +325 -0
  24. data/lib/aspose_slides_cloud/models/svg_export_options.rb +2 -1
  25. data/lib/aspose_slides_cloud/models/swf_export_options.rb +2 -1
  26. data/lib/aspose_slides_cloud/models/tiff_export_options.rb +2 -1
  27. data/lib/aspose_slides_cloud/models/video_export_options.rb +2 -1
  28. data/lib/aspose_slides_cloud/models/xaml_export_options.rb +2 -1
  29. data/lib/aspose_slides_cloud/models/xps_export_options.rb +2 -1
  30. data/lib/aspose_slides_cloud/type_registry.rb +3 -0
  31. data/lib/aspose_slides_cloud/version.rb +1 -1
  32. data/lib/aspose_slides_cloud.rb +2 -0
  33. data/spec/api/slides_api_spec.rb +23234 -32650
  34. data/spec/spec_utils.rb +2 -0
  35. data/spec/use_cases/chart_spec.rb +209 -0
  36. data/spec/use_cases/comment_spec.rb +159 -0
  37. data/spec/use_cases/convert_spec.rb +45 -0
  38. data/spec/use_cases/font_spec.rb +143 -0
  39. data/spec/use_cases/layout_slide_spec.rb +18 -0
  40. data/spec/use_cases/master_slide_spec.rb +16 -0
  41. data/spec/use_cases/merge_spec.rb +21 -0
  42. data/spec/use_cases/notes_slide_spec.rb +34 -0
  43. data/spec/use_cases/paragraph_spec.rb +330 -0
  44. data/spec/use_cases/portion_spec.rb +324 -0
  45. data/spec/use_cases/property_spec.rb +59 -0
  46. data/spec/use_cases/shape_spec.rb +214 -11
  47. data/spec/use_cases/slide_spec.rb +197 -0
  48. data/spec/use_cases/text_format_spec.rb +74 -0
  49. data/spec/use_cases/text_spec.rb +39 -0
  50. data/testRules.json +50 -1
  51. metadata +17 -2
@@ -0,0 +1,325 @@
1
+ =begin
2
+ Copyright (c) 2019 Aspose Pty Ltd
3
+
4
+ Permission is hereby granted, free of charge, to any person obtaining a copy
5
+ of this software and associated documentation files (the "Software"), to deal
6
+ in the Software without restriction, including without limitation the rights
7
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8
+ copies of the Software, and to permit persons to whom the Software is
9
+ furnished to do so, subject to the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be included in all
12
+ copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20
+ SOFTWARE.
21
+ =end
22
+
23
+ require 'date'
24
+
25
+ module AsposeSlidesCloud
26
+ # Slide show properties.
27
+ class SlideShowProperties < ResourceBase
28
+ # Loop slide show.
29
+ attr_accessor :loop
30
+
31
+ # Start slide in the slide show.
32
+ attr_accessor :start_slide
33
+
34
+ # End slides in the slide show.
35
+ attr_accessor :end_slide
36
+
37
+ # Pen color.
38
+ attr_accessor :pen_color
39
+
40
+ # Show animation.
41
+ attr_accessor :show_animation
42
+
43
+ # Show narrration.
44
+ attr_accessor :show_narration
45
+
46
+ # Use timings.
47
+ attr_accessor :use_timings
48
+
49
+ # Slide show type.
50
+ attr_accessor :slide_show_type
51
+
52
+ # Show scroll bar. Applied with BrowsedByIndividual slide show type.
53
+ attr_accessor :show_scrollbar
54
+
55
+ class EnumAttributeValidator
56
+ attr_reader :datatype
57
+ attr_reader :allowable_values
58
+
59
+ def initialize(datatype, allowable_values)
60
+ @allowable_values = allowable_values.map do |value|
61
+ case datatype.to_s
62
+ when /Integer/i
63
+ value.to_i
64
+ when /Float/i
65
+ value.to_f
66
+ else
67
+ value
68
+ end
69
+ end
70
+ end
71
+
72
+ def valid?(value)
73
+ !value || allowable_values.any?{ |s| s.casecmp(value) == 0 }
74
+ end
75
+ end
76
+
77
+ # Attribute mapping from ruby-style variable name to JSON key.
78
+ def self.attribute_map
79
+ super.merge({
80
+ :'loop' => :'Loop',
81
+ :'start_slide' => :'StartSlide',
82
+ :'end_slide' => :'EndSlide',
83
+ :'pen_color' => :'PenColor',
84
+ :'show_animation' => :'ShowAnimation',
85
+ :'show_narration' => :'ShowNarration',
86
+ :'use_timings' => :'UseTimings',
87
+ :'slide_show_type' => :'SlideShowType',
88
+ :'show_scrollbar' => :'ShowScrollbar',
89
+ })
90
+ end
91
+
92
+ # Attribute type mapping.
93
+ def self.swagger_types
94
+ super.merge({
95
+ :'loop' => :'BOOLEAN',
96
+ :'start_slide' => :'Integer',
97
+ :'end_slide' => :'Integer',
98
+ :'pen_color' => :'String',
99
+ :'show_animation' => :'BOOLEAN',
100
+ :'show_narration' => :'BOOLEAN',
101
+ :'use_timings' => :'BOOLEAN',
102
+ :'slide_show_type' => :'String',
103
+ :'show_scrollbar' => :'BOOLEAN',
104
+ })
105
+ end
106
+
107
+ # Initializes the object
108
+ # @param [Hash] attributes Model attributes in the form of hash
109
+ def initialize(attributes = {})
110
+ super
111
+
112
+ if attributes.has_key?(:'Loop')
113
+ self.loop = attributes[:'Loop']
114
+ end
115
+
116
+ if attributes.has_key?(:'StartSlide')
117
+ self.start_slide = attributes[:'StartSlide']
118
+ end
119
+
120
+ if attributes.has_key?(:'EndSlide')
121
+ self.end_slide = attributes[:'EndSlide']
122
+ end
123
+
124
+ if attributes.has_key?(:'PenColor')
125
+ self.pen_color = attributes[:'PenColor']
126
+ end
127
+
128
+ if attributes.has_key?(:'ShowAnimation')
129
+ self.show_animation = attributes[:'ShowAnimation']
130
+ end
131
+
132
+ if attributes.has_key?(:'ShowNarration')
133
+ self.show_narration = attributes[:'ShowNarration']
134
+ end
135
+
136
+ if attributes.has_key?(:'UseTimings')
137
+ self.use_timings = attributes[:'UseTimings']
138
+ end
139
+
140
+ if attributes.has_key?(:'SlideShowType')
141
+ self.slide_show_type = attributes[:'SlideShowType']
142
+ end
143
+
144
+ if attributes.has_key?(:'ShowScrollbar')
145
+ self.show_scrollbar = attributes[:'ShowScrollbar']
146
+ end
147
+ end
148
+
149
+ # Show invalid properties with the reasons. Usually used together with valid?
150
+ # @return Array for valid properties with the reasons
151
+ def list_invalid_properties
152
+ invalid_properties = super
153
+ invalid_properties
154
+ end
155
+
156
+ # Check to see if the all the properties in the model are valid
157
+ # @return true if the model is valid
158
+ def valid?
159
+ return false if !super
160
+ slide_show_type_validator = EnumAttributeValidator.new('String', ['BrowsedAtKiosk', 'BrowsedByIndividual', 'PresentedBySpeaker'])
161
+ return false unless slide_show_type_validator.valid?(@slide_show_type)
162
+ true
163
+ end
164
+
165
+ # Custom attribute writer method checking allowed values (enum).
166
+ # @param [Object] slide_show_type Object to be assigned
167
+ def slide_show_type=(slide_show_type)
168
+ validator = EnumAttributeValidator.new('String', ['BrowsedAtKiosk', 'BrowsedByIndividual', 'PresentedBySpeaker'])
169
+ unless validator.valid?(slide_show_type)
170
+ fail ArgumentError, 'invalid value for "slide_show_type", must be one of #{validator.allowable_values}.'
171
+ end
172
+ @slide_show_type = slide_show_type
173
+ end
174
+
175
+ # Checks equality by comparing each attribute.
176
+ # @param [Object] Object to be compared
177
+ def ==(o)
178
+ return true if self.equal?(o)
179
+ self.class == o.class &&
180
+ self_uri == o.self_uri &&
181
+ alternate_links == o.alternate_links &&
182
+ loop == o.loop &&
183
+ start_slide == o.start_slide &&
184
+ end_slide == o.end_slide &&
185
+ pen_color == o.pen_color &&
186
+ show_animation == o.show_animation &&
187
+ show_narration == o.show_narration &&
188
+ use_timings == o.use_timings &&
189
+ slide_show_type == o.slide_show_type &&
190
+ show_scrollbar == o.show_scrollbar
191
+ end
192
+
193
+ # @see the `==` method
194
+ # @param [Object] Object to be compared
195
+ def eql?(o)
196
+ self == o
197
+ end
198
+
199
+ # Calculates hash code according to all attributes.
200
+ # @return [Fixnum] Hash code
201
+ def hash
202
+ [self_uri, alternate_links, loop, start_slide, end_slide, pen_color, show_animation, show_narration, use_timings, slide_show_type, show_scrollbar].hash
203
+ end
204
+
205
+ # Builds the object from hash
206
+ # @param [Hash] attributes Model attributes in the form of hash
207
+ # @return [Object] Returns the model itself
208
+ def build_from_hash(attributes)
209
+ return nil unless attributes.is_a?(Hash)
210
+ self.class.swagger_types.each_pair do |key, type|
211
+ mapKey = self.class.attribute_map[key]
212
+ if !mapKey.nil?
213
+ val = attributes[mapKey]
214
+ if val.nil?
215
+ mapKeyString = mapKey.to_s
216
+ mapKeyString[0] = mapKeyString[0].downcase
217
+ mapKey = mapKeyString.to_sym
218
+ val = attributes[mapKey]
219
+ end
220
+ if !val.nil?
221
+ if type =~ /\AArray<(.*)>/i
222
+ # check to ensure the input is an array given that the the attribute
223
+ # is documented as an array but the input is not
224
+ if val.is_a?(Array)
225
+ self.send("#{key}=", val.map { |v| _deserialize($1, v) })
226
+ end
227
+ else
228
+ self.send("#{key}=", _deserialize(type, val))
229
+ end
230
+ end
231
+ end
232
+ end
233
+
234
+ self
235
+ end
236
+
237
+ # Deserializes the data based on type
238
+ # @param string type Data type
239
+ # @param string value Value to be deserialized
240
+ # @return [Object] Deserialized data
241
+ def _deserialize(type, value)
242
+ case type.to_sym
243
+ when :DateTime
244
+ DateTime.parse(value)
245
+ when :Date
246
+ Date.parse(value)
247
+ when :String
248
+ value.to_s
249
+ when :Integer
250
+ value.to_i
251
+ when :Float
252
+ value.to_f
253
+ when :BOOLEAN
254
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
255
+ true
256
+ else
257
+ false
258
+ end
259
+ when :Object
260
+ # generic object (usually a Hash), return directly
261
+ value
262
+ when /\AArray<(?<inner_type>.+)>\z/
263
+ inner_type = Regexp.last_match[:inner_type]
264
+ value.map { |v| _deserialize(inner_type, v) }
265
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
266
+ k_type = Regexp.last_match[:k_type]
267
+ v_type = Regexp.last_match[:v_type]
268
+ {}.tap do |hash|
269
+ value.each do |k, v|
270
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
271
+ end
272
+ end
273
+ else # model
274
+ registry_type = AsposeSlidesCloud::TypeRegistry.get_type(type.to_s, value)
275
+ if registry_type
276
+ type = registry_type
277
+ end
278
+ temp_model = AsposeSlidesCloud.const_get(type).new
279
+ temp_model.build_from_hash(value)
280
+ end
281
+ end
282
+
283
+ # Returns the string representation of the object
284
+ # @return [String] String presentation of the object
285
+ def to_s
286
+ to_hash.to_s
287
+ end
288
+
289
+ # to_body is an alias to to_hash (backward compatibility)
290
+ # @return [Hash] Returns the object in the form of hash
291
+ def to_body
292
+ to_hash
293
+ end
294
+
295
+ # Returns the object in the form of hash
296
+ # @return [Hash] Returns the object in the form of hash
297
+ def to_hash
298
+ hash = {}
299
+ self.class.attribute_map.each_pair do |attr, param|
300
+ value = self.send(attr)
301
+ next if value.nil?
302
+ hash[param] = _to_hash(value)
303
+ end
304
+ hash
305
+ end
306
+
307
+ # Outputs non-array value in the form of hash
308
+ # For object, use to_hash. Otherwise, just return the value
309
+ # @param [Object] value Any valid value
310
+ # @return [Hash] Returns the value in the form of hash
311
+ def _to_hash(value)
312
+ if value.is_a?(Array)
313
+ value.compact.map { |v| _to_hash(v) }
314
+ elsif value.is_a?(Hash)
315
+ {}.tap do |hash|
316
+ value.each { |k, v| hash[k] = _to_hash(v) }
317
+ end
318
+ elsif value.respond_to? :to_hash
319
+ value.to_hash
320
+ else
321
+ value
322
+ end
323
+ end
324
+ end
325
+ end
@@ -192,6 +192,7 @@ module AsposeSlidesCloud
192
192
  self.class == o.class &&
193
193
  default_regular_font == o.default_regular_font &&
194
194
  font_fallback_rules == o.font_fallback_rules &&
195
+ font_subst_rules == o.font_subst_rules &&
195
196
  format == o.format &&
196
197
  vectorize_text == o.vectorize_text &&
197
198
  metafile_rasterization_dpi == o.metafile_rasterization_dpi &&
@@ -213,7 +214,7 @@ module AsposeSlidesCloud
213
214
  # Calculates hash code according to all attributes.
214
215
  # @return [Fixnum] Hash code
215
216
  def hash
216
- [default_regular_font, font_fallback_rules, format, vectorize_text, metafile_rasterization_dpi, disable3_d_text, disable_gradient_split, disable_line_end_cropping, jpeg_quality, pictures_compression, delete_pictures_cropped_areas, external_fonts_handling].hash
217
+ [default_regular_font, font_fallback_rules, font_subst_rules, format, vectorize_text, metafile_rasterization_dpi, disable3_d_text, disable_gradient_split, disable_line_end_cropping, jpeg_quality, pictures_compression, delete_pictures_cropped_areas, external_fonts_handling].hash
217
218
  end
218
219
 
219
220
  # Builds the object from hash
@@ -291,6 +291,7 @@ module AsposeSlidesCloud
291
291
  self.class == o.class &&
292
292
  default_regular_font == o.default_regular_font &&
293
293
  font_fallback_rules == o.font_fallback_rules &&
294
+ font_subst_rules == o.font_subst_rules &&
294
295
  format == o.format &&
295
296
  show_hidden_slides == o.show_hidden_slides &&
296
297
  compressed == o.compressed &&
@@ -323,7 +324,7 @@ module AsposeSlidesCloud
323
324
  # Calculates hash code according to all attributes.
324
325
  # @return [Fixnum] Hash code
325
326
  def hash
326
- [default_regular_font, font_fallback_rules, format, show_hidden_slides, compressed, viewer_included, show_page_border, show_full_screen, show_page_stepper, show_search, show_top_pane, show_bottom_pane, show_left_pane, start_open_left_pane, enable_context_menu, logo_image, logo_link, jpeg_quality, notes_position, comments_position, comments_area_width, comments_area_color, show_comments_by_no_author].hash
327
+ [default_regular_font, font_fallback_rules, font_subst_rules, format, show_hidden_slides, compressed, viewer_included, show_page_border, show_full_screen, show_page_stepper, show_search, show_top_pane, show_bottom_pane, show_left_pane, start_open_left_pane, enable_context_menu, logo_image, logo_link, jpeg_quality, notes_position, comments_position, comments_area_width, comments_area_color, show_comments_by_no_author].hash
327
328
  end
328
329
 
329
330
  # Builds the object from hash
@@ -225,6 +225,7 @@ module AsposeSlidesCloud
225
225
  self.class == o.class &&
226
226
  default_regular_font == o.default_regular_font &&
227
227
  font_fallback_rules == o.font_fallback_rules &&
228
+ font_subst_rules == o.font_subst_rules &&
228
229
  format == o.format &&
229
230
  height == o.height &&
230
231
  width == o.width &&
@@ -249,7 +250,7 @@ module AsposeSlidesCloud
249
250
  # Calculates hash code according to all attributes.
250
251
  # @return [Fixnum] Hash code
251
252
  def hash
252
- [default_regular_font, font_fallback_rules, format, height, width, compression, dpi_x, dpi_y, show_hidden_slides, pixel_format, notes_position, comments_position, comments_area_width, comments_area_color, show_comments_by_no_author].hash
253
+ [default_regular_font, font_fallback_rules, font_subst_rules, format, height, width, compression, dpi_x, dpi_y, show_hidden_slides, pixel_format, notes_position, comments_position, comments_area_width, comments_area_color, show_comments_by_no_author].hash
253
254
  end
254
255
 
255
256
  # Builds the object from hash
@@ -147,6 +147,7 @@ module AsposeSlidesCloud
147
147
  self.class == o.class &&
148
148
  default_regular_font == o.default_regular_font &&
149
149
  font_fallback_rules == o.font_fallback_rules &&
150
+ font_subst_rules == o.font_subst_rules &&
150
151
  format == o.format &&
151
152
  slides_transition_duration == o.slides_transition_duration &&
152
153
  transition_type == o.transition_type &&
@@ -163,7 +164,7 @@ module AsposeSlidesCloud
163
164
  # Calculates hash code according to all attributes.
164
165
  # @return [Fixnum] Hash code
165
166
  def hash
166
- [default_regular_font, font_fallback_rules, format, slides_transition_duration, transition_type, transition_duration, video_resolution_type].hash
167
+ [default_regular_font, font_fallback_rules, font_subst_rules, format, slides_transition_duration, transition_type, transition_duration, video_resolution_type].hash
167
168
  end
168
169
 
169
170
  # Builds the object from hash
@@ -74,6 +74,7 @@ module AsposeSlidesCloud
74
74
  self.class == o.class &&
75
75
  default_regular_font == o.default_regular_font &&
76
76
  font_fallback_rules == o.font_fallback_rules &&
77
+ font_subst_rules == o.font_subst_rules &&
77
78
  format == o.format &&
78
79
  export_hidden_slides == o.export_hidden_slides
79
80
  end
@@ -87,7 +88,7 @@ module AsposeSlidesCloud
87
88
  # Calculates hash code according to all attributes.
88
89
  # @return [Fixnum] Hash code
89
90
  def hash
90
- [default_regular_font, font_fallback_rules, format, export_hidden_slides].hash
91
+ [default_regular_font, font_fallback_rules, font_subst_rules, format, export_hidden_slides].hash
91
92
  end
92
93
 
93
94
  # Builds the object from hash
@@ -92,6 +92,7 @@ module AsposeSlidesCloud
92
92
  self.class == o.class &&
93
93
  default_regular_font == o.default_regular_font &&
94
94
  font_fallback_rules == o.font_fallback_rules &&
95
+ font_subst_rules == o.font_subst_rules &&
95
96
  format == o.format &&
96
97
  show_hidden_slides == o.show_hidden_slides &&
97
98
  save_metafiles_as_png == o.save_metafiles_as_png &&
@@ -107,7 +108,7 @@ module AsposeSlidesCloud
107
108
  # Calculates hash code according to all attributes.
108
109
  # @return [Fixnum] Hash code
109
110
  def hash
110
- [default_regular_font, font_fallback_rules, format, show_hidden_slides, save_metafiles_as_png, draw_slides_frame].hash
111
+ [default_regular_font, font_fallback_rules, font_subst_rules, format, show_hidden_slides, save_metafiles_as_png, draw_slides_frame].hash
111
112
  end
112
113
 
113
114
  # Builds the object from hash
@@ -173,6 +173,7 @@ module AsposeSlidesCloud
173
173
  :'SlideComments' => :'ResourceBase',
174
174
  :'SlideModernComment' => :'SlideCommentBase',
175
175
  :'SlideProperties' => :'ResourceBase',
176
+ :'SlideShowProperties' => :'ResourceBase',
176
177
  :'Slides' => :'ResourceBase',
177
178
  :'SolidFill' => :'FillFormat',
178
179
  :'SplitDocumentResult' => :'ResourceBase',
@@ -256,6 +257,7 @@ module AsposeSlidesCloud
256
257
  :'FontData' => { },
257
258
  :'FontFallbackRule' => { },
258
259
  :'FontSet' => { },
260
+ :'FontSubstRule' => { },
259
261
  :'FontsData' => { },
260
262
  :'GeometryPath' => { },
261
263
  :'GeometryPaths' => { },
@@ -416,6 +418,7 @@ module AsposeSlidesCloud
416
418
  :'SlideComments' => { },
417
419
  :'SlideModernComment' => { :'Type' => "Modern", },
418
420
  :'SlideProperties' => { },
421
+ :'SlideShowProperties' => { },
419
422
  :'Slides' => { },
420
423
  :'SolidFill' => { :'Type' => "Solid", },
421
424
  :'SplitDocumentResult' => { },
@@ -21,5 +21,5 @@ SOFTWARE.
21
21
  =end
22
22
 
23
23
  module AsposeSlidesCloud
24
- VERSION = '22.8.0'
24
+ VERSION = '22.10.0'
25
25
  end
@@ -61,6 +61,7 @@ require 'aspose_slides_cloud/models/fill_overlay_effect'
61
61
  require 'aspose_slides_cloud/models/font_data'
62
62
  require 'aspose_slides_cloud/models/font_fallback_rule'
63
63
  require 'aspose_slides_cloud/models/font_set'
64
+ require 'aspose_slides_cloud/models/font_subst_rule'
64
65
  require 'aspose_slides_cloud/models/fonts_data'
65
66
  require 'aspose_slides_cloud/models/geometry_path'
66
67
  require 'aspose_slides_cloud/models/geometry_paths'
@@ -221,6 +222,7 @@ require 'aspose_slides_cloud/models/slide_comment'
221
222
  require 'aspose_slides_cloud/models/slide_comments'
222
223
  require 'aspose_slides_cloud/models/slide_modern_comment'
223
224
  require 'aspose_slides_cloud/models/slide_properties'
225
+ require 'aspose_slides_cloud/models/slide_show_properties'
224
226
  require 'aspose_slides_cloud/models/slides'
225
227
  require 'aspose_slides_cloud/models/solid_fill'
226
228
  require 'aspose_slides_cloud/models/split_document_result'