aspose_slides_cloud 20.8.0 → 21.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +3 -3
- data/TestData/Sections.pptx +0 -0
- data/TestData/test-unprotected.pptx +0 -0
- data/TestData/test.pdf +0 -0
- data/TestData/test.pptx +0 -0
- data/lib/aspose_slides_cloud.rb +8 -2
- data/lib/aspose_slides_cloud/api/slides_api.rb +10162 -3258
- data/lib/aspose_slides_cloud/api/slides_api_requests.rb +949 -225
- data/lib/aspose_slides_cloud/api_client.rb +24 -22
- data/lib/aspose_slides_cloud/configuration.rb +7 -2
- data/lib/aspose_slides_cloud/models/audio_frame.rb +1 -3
- data/lib/aspose_slides_cloud/models/chart.rb +3 -5
- data/lib/aspose_slides_cloud/models/chart_category.rb +19 -9
- data/lib/aspose_slides_cloud/models/connector.rb +1 -2
- data/lib/aspose_slides_cloud/models/{resource_uri_element.rb → data_point.rb} +4 -14
- data/lib/aspose_slides_cloud/models/document.rb +6 -6
- data/lib/aspose_slides_cloud/models/geometry_shape.rb +18 -19
- data/lib/aspose_slides_cloud/models/graphical_object.rb +2 -4
- data/lib/aspose_slides_cloud/models/group_shape.rb +2 -4
- data/lib/aspose_slides_cloud/models/header_footer.rb +247 -0
- data/lib/aspose_slides_cloud/models/i_shape_export_options.rb +2 -12
- data/lib/aspose_slides_cloud/models/layout_slide.rb +2 -2
- data/lib/aspose_slides_cloud/models/layout_slides.rb +1 -1
- data/lib/aspose_slides_cloud/models/line_format.rb +23 -1
- data/lib/aspose_slides_cloud/models/master_slide.rb +2 -2
- data/lib/aspose_slides_cloud/models/master_slides.rb +1 -1
- data/lib/aspose_slides_cloud/models/notes_slide.rb +1 -1
- data/lib/aspose_slides_cloud/models/notes_slide_header_footer.rb +267 -0
- data/lib/aspose_slides_cloud/models/ole_object_frame.rb +1 -3
- data/lib/aspose_slides_cloud/models/paragraphs.rb +1 -1
- data/lib/aspose_slides_cloud/models/picture_fill.rb +1 -1
- data/lib/aspose_slides_cloud/models/picture_frame.rb +1 -3
- data/lib/aspose_slides_cloud/models/placeholder.rb +1 -1
- data/lib/aspose_slides_cloud/models/presentation_to_merge.rb +46 -2
- data/lib/aspose_slides_cloud/models/protection_properties.rb +217 -0
- data/lib/aspose_slides_cloud/models/section.rb +234 -0
- data/lib/aspose_slides_cloud/models/sections.rb +209 -0
- data/lib/aspose_slides_cloud/models/series.rb +2 -2
- data/lib/aspose_slides_cloud/models/shape.rb +2 -3
- data/lib/aspose_slides_cloud/models/shape_base.rb +3 -24
- data/lib/aspose_slides_cloud/models/shapes.rb +1 -1
- data/lib/aspose_slides_cloud/models/slide.rb +8 -8
- data/lib/aspose_slides_cloud/models/slide_properties.rb +315 -0
- data/lib/aspose_slides_cloud/models/slides.rb +1 -1
- data/lib/aspose_slides_cloud/models/smart_art.rb +1 -3
- data/lib/aspose_slides_cloud/models/smart_art_node.rb +1 -1
- data/lib/aspose_slides_cloud/models/smart_art_shape.rb +2 -3
- data/lib/aspose_slides_cloud/models/table.rb +1 -3
- data/lib/aspose_slides_cloud/models/theme.rb +3 -3
- data/lib/aspose_slides_cloud/models/video_frame.rb +1 -3
- data/lib/aspose_slides_cloud/models/waterfall_chart_data_point.rb +206 -0
- data/lib/aspose_slides_cloud/type_registry.rb +24 -12
- data/lib/aspose_slides_cloud/version.rb +1 -1
- data/spec/api/slides_api_spec.rb +25848 -18001
- data/spec/extra/extra_spec.rb +73 -107
- data/spec/spec_utils.rb +21 -24
- data/testConfig.json +2 -2
- data/testRules.json +160 -103
- metadata +14 -3
@@ -111,7 +111,6 @@ module AsposeSlidesCloud
|
|
111
111
|
self.is_reversed = attributes[:'IsReversed']
|
112
112
|
end
|
113
113
|
self.type = "SmartArt"
|
114
|
-
self.shape_type = "Diagram"
|
115
114
|
end
|
116
115
|
|
117
116
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -205,7 +204,6 @@ module AsposeSlidesCloud
|
|
205
204
|
effect_format == o.effect_format &&
|
206
205
|
line_format == o.line_format &&
|
207
206
|
type == o.type &&
|
208
|
-
shape_type == o.shape_type &&
|
209
207
|
layout == o.layout &&
|
210
208
|
quick_style == o.quick_style &&
|
211
209
|
color_style == o.color_style &&
|
@@ -222,7 +220,7 @@ module AsposeSlidesCloud
|
|
222
220
|
# Calculates hash code according to all attributes.
|
223
221
|
# @return [Fixnum] Hash code
|
224
222
|
def hash
|
225
|
-
[self_uri, alternate_links, name, width, height, alternative_text, alternative_text_title, hidden, x, y, z_order_position, shapes, fill_format, effect_format, line_format, type,
|
223
|
+
[self_uri, alternate_links, name, width, height, alternative_text, alternative_text_title, hidden, x, y, z_order_position, shapes, fill_format, effect_format, line_format, type, layout, quick_style, color_style, nodes, is_reversed].hash
|
226
224
|
end
|
227
225
|
|
228
226
|
# Builds the object from hash
|
@@ -77,7 +77,7 @@ module AsposeSlidesCloud
|
|
77
77
|
def self.swagger_types
|
78
78
|
{
|
79
79
|
:'nodes' => :'Array<SmartArtNode>',
|
80
|
-
:'shapes' => :'
|
80
|
+
:'shapes' => :'ResourceUri',
|
81
81
|
:'is_assistant' => :'BOOLEAN',
|
82
82
|
:'text' => :'String',
|
83
83
|
:'org_chart_layout' => :'String',
|
@@ -24,7 +24,7 @@ require 'date'
|
|
24
24
|
|
25
25
|
module AsposeSlidesCloud
|
26
26
|
# Represents SmartArt resource.
|
27
|
-
class SmartArtShape <
|
27
|
+
class SmartArtShape < GeometryShape
|
28
28
|
class EnumAttributeValidator
|
29
29
|
attr_reader :datatype
|
30
30
|
attr_reader :allowable_values
|
@@ -64,7 +64,6 @@ module AsposeSlidesCloud
|
|
64
64
|
def initialize(attributes = {})
|
65
65
|
super
|
66
66
|
self.type = "SmartArtShape"
|
67
|
-
self.shape_type = "Custom"
|
68
67
|
end
|
69
68
|
|
70
69
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -114,7 +113,7 @@ module AsposeSlidesCloud
|
|
114
113
|
# Calculates hash code according to all attributes.
|
115
114
|
# @return [Fixnum] Hash code
|
116
115
|
def hash
|
117
|
-
[self_uri, alternate_linksname, width, height, alternative_text, alternative_text_title, hidden, x, y, z_order_position, shapes, fill_format, effect_format, line_format,
|
116
|
+
[self_uri, alternate_linksname, width, height, alternative_text, alternative_text_title, hidden, x, y, z_order_position, shapes, fill_format, effect_format, line_format, typeshape_type].hash
|
118
117
|
end
|
119
118
|
|
120
119
|
# Builds the object from hash
|
@@ -158,7 +158,6 @@ module AsposeSlidesCloud
|
|
158
158
|
self.vertical_banding = attributes[:'VerticalBanding']
|
159
159
|
end
|
160
160
|
self.type = "Table"
|
161
|
-
self.shape_type = "Table"
|
162
161
|
end
|
163
162
|
|
164
163
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -208,7 +207,6 @@ module AsposeSlidesCloud
|
|
208
207
|
effect_format == o.effect_format &&
|
209
208
|
line_format == o.line_format &&
|
210
209
|
type == o.type &&
|
211
|
-
shape_type == o.shape_type &&
|
212
210
|
style == o.style &&
|
213
211
|
rows == o.rows &&
|
214
212
|
columns == o.columns &&
|
@@ -230,7 +228,7 @@ module AsposeSlidesCloud
|
|
230
228
|
# Calculates hash code according to all attributes.
|
231
229
|
# @return [Fixnum] Hash code
|
232
230
|
def hash
|
233
|
-
[self_uri, alternate_links, name, width, height, alternative_text, alternative_text_title, hidden, x, y, z_order_position, shapes, fill_format, effect_format, line_format, type,
|
231
|
+
[self_uri, alternate_links, name, width, height, alternative_text, alternative_text_title, hidden, x, y, z_order_position, shapes, fill_format, effect_format, line_format, type, style, rows, columns, first_col, first_row, horizontal_banding, last_col, last_row, right_to_left, vertical_banding].hash
|
234
232
|
end
|
235
233
|
|
236
234
|
# Builds the object from hash
|
@@ -51,9 +51,9 @@ module AsposeSlidesCloud
|
|
51
51
|
def self.swagger_types
|
52
52
|
super.merge({
|
53
53
|
:'name' => :'String',
|
54
|
-
:'color_scheme' => :'
|
55
|
-
:'font_scheme' => :'
|
56
|
-
:'format_scheme' => :'
|
54
|
+
:'color_scheme' => :'ResourceUri',
|
55
|
+
:'font_scheme' => :'ResourceUri',
|
56
|
+
:'format_scheme' => :'ResourceUri',
|
57
57
|
})
|
58
58
|
end
|
59
59
|
|
@@ -127,7 +127,6 @@ module AsposeSlidesCloud
|
|
127
127
|
self.base64_data = attributes[:'Base64Data']
|
128
128
|
end
|
129
129
|
self.type = "VideoFrame"
|
130
|
-
self.shape_type = "VideoFrame"
|
131
130
|
end
|
132
131
|
|
133
132
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -190,7 +189,6 @@ module AsposeSlidesCloud
|
|
190
189
|
line_format == o.line_format &&
|
191
190
|
type == o.type &&
|
192
191
|
shape_type == o.shape_type &&
|
193
|
-
geometry_shape_type == o.geometry_shape_type &&
|
194
192
|
full_screen_mode == o.full_screen_mode &&
|
195
193
|
hide_at_showing == o.hide_at_showing &&
|
196
194
|
play_loop_mode == o.play_loop_mode &&
|
@@ -209,7 +207,7 @@ module AsposeSlidesCloud
|
|
209
207
|
# Calculates hash code according to all attributes.
|
210
208
|
# @return [Fixnum] Hash code
|
211
209
|
def hash
|
212
|
-
[self_uri, alternate_links, name, width, height, alternative_text, alternative_text_title, hidden, x, y, z_order_position, shapes, fill_format, effect_format, line_format, type, shape_type,
|
210
|
+
[self_uri, alternate_links, name, width, height, alternative_text, alternative_text_title, hidden, x, y, z_order_position, shapes, fill_format, effect_format, line_format, type, shape_type, full_screen_mode, hide_at_showing, play_loop_mode, play_mode, rewind_video, volume, base64_data].hash
|
213
211
|
end
|
214
212
|
|
215
213
|
# Builds the object from hash
|
@@ -0,0 +1,206 @@
|
|
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
|
+
# One value chart data point.
|
27
|
+
class WaterfallChartDataPoint < OneValueChartDataPoint
|
28
|
+
# Value.
|
29
|
+
attr_accessor :set_as_total
|
30
|
+
|
31
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
32
|
+
def self.attribute_map
|
33
|
+
super.merge({
|
34
|
+
:'set_as_total' => :'SetAsTotal',
|
35
|
+
})
|
36
|
+
end
|
37
|
+
|
38
|
+
# Attribute type mapping.
|
39
|
+
def self.swagger_types
|
40
|
+
super.merge({
|
41
|
+
:'set_as_total' => :'BOOLEAN',
|
42
|
+
})
|
43
|
+
end
|
44
|
+
|
45
|
+
# Initializes the object
|
46
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
47
|
+
def initialize(attributes = {})
|
48
|
+
super
|
49
|
+
|
50
|
+
if attributes.has_key?(:'SetAsTotal')
|
51
|
+
self.set_as_total = attributes[:'SetAsTotal']
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
55
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
56
|
+
# @return Array for valid properties with the reasons
|
57
|
+
def list_invalid_properties
|
58
|
+
invalid_properties = super
|
59
|
+
invalid_properties
|
60
|
+
end
|
61
|
+
|
62
|
+
# Check to see if the all the properties in the model are valid
|
63
|
+
# @return true if the model is valid
|
64
|
+
def valid?
|
65
|
+
return false if !super
|
66
|
+
true
|
67
|
+
end
|
68
|
+
|
69
|
+
# Checks equality by comparing each attribute.
|
70
|
+
# @param [Object] Object to be compared
|
71
|
+
def ==(o)
|
72
|
+
return true if self.equal?(o)
|
73
|
+
self.class == o.class &&
|
74
|
+
value == o.value &&
|
75
|
+
set_as_total == o.set_as_total
|
76
|
+
end
|
77
|
+
|
78
|
+
# @see the `==` method
|
79
|
+
# @param [Object] Object to be compared
|
80
|
+
def eql?(o)
|
81
|
+
self == o
|
82
|
+
end
|
83
|
+
|
84
|
+
# Calculates hash code according to all attributes.
|
85
|
+
# @return [Fixnum] Hash code
|
86
|
+
def hash
|
87
|
+
[value, set_as_total].hash
|
88
|
+
end
|
89
|
+
|
90
|
+
# Builds the object from hash
|
91
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
92
|
+
# @return [Object] Returns the model itself
|
93
|
+
def build_from_hash(attributes)
|
94
|
+
return nil unless attributes.is_a?(Hash)
|
95
|
+
self.class.swagger_types.each_pair do |key, type|
|
96
|
+
mapKey = self.class.attribute_map[key]
|
97
|
+
if !mapKey.nil?
|
98
|
+
val = attributes[mapKey]
|
99
|
+
if val.nil?
|
100
|
+
mapKeyString = mapKey.to_s
|
101
|
+
mapKeyString[0] = mapKeyString[0].downcase
|
102
|
+
mapKey = mapKeyString.to_sym
|
103
|
+
val = attributes[mapKey]
|
104
|
+
end
|
105
|
+
if !val.nil?
|
106
|
+
if type =~ /\AArray<(.*)>/i
|
107
|
+
# check to ensure the input is an array given that the the attribute
|
108
|
+
# is documented as an array but the input is not
|
109
|
+
if val.is_a?(Array)
|
110
|
+
self.send("#{key}=", val.map { |v| _deserialize($1, v) })
|
111
|
+
end
|
112
|
+
else
|
113
|
+
self.send("#{key}=", _deserialize(type, val))
|
114
|
+
end
|
115
|
+
end
|
116
|
+
end
|
117
|
+
end
|
118
|
+
|
119
|
+
self
|
120
|
+
end
|
121
|
+
|
122
|
+
# Deserializes the data based on type
|
123
|
+
# @param string type Data type
|
124
|
+
# @param string value Value to be deserialized
|
125
|
+
# @return [Object] Deserialized data
|
126
|
+
def _deserialize(type, value)
|
127
|
+
case type.to_sym
|
128
|
+
when :DateTime
|
129
|
+
DateTime.parse(value)
|
130
|
+
when :Date
|
131
|
+
Date.parse(value)
|
132
|
+
when :String
|
133
|
+
value.to_s
|
134
|
+
when :Integer
|
135
|
+
value.to_i
|
136
|
+
when :Float
|
137
|
+
value.to_f
|
138
|
+
when :BOOLEAN
|
139
|
+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
140
|
+
true
|
141
|
+
else
|
142
|
+
false
|
143
|
+
end
|
144
|
+
when :Object
|
145
|
+
# generic object (usually a Hash), return directly
|
146
|
+
value
|
147
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
148
|
+
inner_type = Regexp.last_match[:inner_type]
|
149
|
+
value.map { |v| _deserialize(inner_type, v) }
|
150
|
+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
151
|
+
k_type = Regexp.last_match[:k_type]
|
152
|
+
v_type = Regexp.last_match[:v_type]
|
153
|
+
{}.tap do |hash|
|
154
|
+
value.each do |k, v|
|
155
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
156
|
+
end
|
157
|
+
end
|
158
|
+
else # model
|
159
|
+
temp_model = AsposeSlidesCloud.const_get(type).new
|
160
|
+
temp_model.build_from_hash(value)
|
161
|
+
end
|
162
|
+
end
|
163
|
+
|
164
|
+
# Returns the string representation of the object
|
165
|
+
# @return [String] String presentation of the object
|
166
|
+
def to_s
|
167
|
+
to_hash.to_s
|
168
|
+
end
|
169
|
+
|
170
|
+
# to_body is an alias to to_hash (backward compatibility)
|
171
|
+
# @return [Hash] Returns the object in the form of hash
|
172
|
+
def to_body
|
173
|
+
to_hash
|
174
|
+
end
|
175
|
+
|
176
|
+
# Returns the object in the form of hash
|
177
|
+
# @return [Hash] Returns the object in the form of hash
|
178
|
+
def to_hash
|
179
|
+
hash = {}
|
180
|
+
self.class.attribute_map.each_pair do |attr, param|
|
181
|
+
value = self.send(attr)
|
182
|
+
next if value.nil?
|
183
|
+
hash[param] = _to_hash(value)
|
184
|
+
end
|
185
|
+
hash
|
186
|
+
end
|
187
|
+
|
188
|
+
# Outputs non-array value in the form of hash
|
189
|
+
# For object, use to_hash. Otherwise, just return the value
|
190
|
+
# @param [Object] value Any valid value
|
191
|
+
# @return [Hash] Returns the value in the form of hash
|
192
|
+
def _to_hash(value)
|
193
|
+
if value.is_a?(Array)
|
194
|
+
value.compact.map { |v| _to_hash(v) }
|
195
|
+
elsif value.is_a?(Hash)
|
196
|
+
{}.tap do |hash|
|
197
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
198
|
+
end
|
199
|
+
elsif value.respond_to? :to_hash
|
200
|
+
value.to_hash
|
201
|
+
else
|
202
|
+
value
|
203
|
+
end
|
204
|
+
end
|
205
|
+
end
|
206
|
+
end
|
@@ -70,6 +70,7 @@ module AsposeSlidesCloud
|
|
70
70
|
:'FontScheme' => :'ResourceBase',
|
71
71
|
:'FormatScheme' => :'ResourceBase',
|
72
72
|
:'GradientFill' => :'FillFormat',
|
73
|
+
:'HeaderFooter' => :'ResourceBase',
|
73
74
|
:'HtmlExportOptions' => :'ExportOptions',
|
74
75
|
:'Image' => :'ResourceBase',
|
75
76
|
:'ImageExportOptions' => :'ExportOptions',
|
@@ -81,6 +82,7 @@ module AsposeSlidesCloud
|
|
81
82
|
:'Merge' => :'Task',
|
82
83
|
:'NoFill' => :'FillFormat',
|
83
84
|
:'NotesSlide' => :'ResourceBase',
|
85
|
+
:'NotesSlideHeaderFooter' => :'ResourceBase',
|
84
86
|
:'OneValueChartDataPoint' => :'DataPoint',
|
85
87
|
:'OneValueSeries' => :'Series',
|
86
88
|
:'Paragraph' => :'ResourceBase',
|
@@ -95,6 +97,7 @@ module AsposeSlidesCloud
|
|
95
97
|
:'Portion' => :'ResourceBase',
|
96
98
|
:'Portions' => :'ResourceBase',
|
97
99
|
:'PptxExportOptions' => :'ExportOptions',
|
100
|
+
:'ProtectionProperties' => :'ResourceBase',
|
98
101
|
:'RemoveShape' => :'Task',
|
99
102
|
:'RemoveSlide' => :'Task',
|
100
103
|
:'ReorderSlide' => :'Task',
|
@@ -107,12 +110,15 @@ module AsposeSlidesCloud
|
|
107
110
|
:'SaveSlide' => :'Task',
|
108
111
|
:'ScatterChartDataPoint' => :'DataPoint',
|
109
112
|
:'ScatterSeries' => :'Series',
|
113
|
+
:'Section' => :'ResourceBase',
|
114
|
+
:'Sections' => :'ResourceBase',
|
110
115
|
:'ShapeBase' => :'ResourceBase',
|
111
116
|
:'Shapes' => :'ResourceBase',
|
112
117
|
:'Slide' => :'ResourceBase',
|
113
118
|
:'SlideAnimation' => :'ResourceBase',
|
114
119
|
:'SlideBackground' => :'ResourceBase',
|
115
120
|
:'SlideComments' => :'ResourceBase',
|
121
|
+
:'SlideProperties' => :'ResourceBase',
|
116
122
|
:'Slides' => :'ResourceBase',
|
117
123
|
:'SolidFill' => :'FillFormat',
|
118
124
|
:'SplitDocumentResult' => :'ResourceBase',
|
@@ -135,7 +141,6 @@ module AsposeSlidesCloud
|
|
135
141
|
:'OleObjectFrame' => :'ShapeBase',
|
136
142
|
:'SlideReplaceResult' => :'Slide',
|
137
143
|
:'SmartArt' => :'ShapeBase',
|
138
|
-
:'SmartArtShape' => :'ShapeBase',
|
139
144
|
:'Table' => :'ShapeBase',
|
140
145
|
:'WaterfallChartDataPoint' => :'OneValueChartDataPoint',
|
141
146
|
:'WaterfallSeries' => :'OneValueSeries',
|
@@ -143,6 +148,7 @@ module AsposeSlidesCloud
|
|
143
148
|
:'Connector' => :'GeometryShape',
|
144
149
|
:'PictureFrame' => :'GeometryShape',
|
145
150
|
:'Shape' => :'GeometryShape',
|
151
|
+
:'SmartArtShape' => :'GeometryShape',
|
146
152
|
:'VideoFrame' => :'GeometryShape',
|
147
153
|
|
148
154
|
}
|
@@ -200,13 +206,13 @@ module AsposeSlidesCloud
|
|
200
206
|
:'ReflectionEffect' => { },
|
201
207
|
:'ResourceBase' => { },
|
202
208
|
:'ResourceUri' => { },
|
203
|
-
:'ResourceUriElement' => { },
|
204
209
|
:'ScaleType' => { },
|
205
210
|
:'Series' => { },
|
206
211
|
:'SeriesMarker' => { },
|
207
212
|
:'ShapeExportFormat' => { },
|
208
213
|
:'ShapeImageExportOptions' => { },
|
209
214
|
:'ShapeThumbnailBounds' => { },
|
215
|
+
:'ShapesAlignmentType' => { },
|
210
216
|
:'SizeType' => { },
|
211
217
|
:'SlideComment' => { },
|
212
218
|
:'SlideExportFormat' => { },
|
@@ -233,6 +239,7 @@ module AsposeSlidesCloud
|
|
233
239
|
:'FontScheme' => { },
|
234
240
|
:'FormatScheme' => { },
|
235
241
|
:'GradientFill' => { :'Type' => "Gradient", },
|
242
|
+
:'HeaderFooter' => { },
|
236
243
|
:'HtmlExportOptions' => { :'Format' => "html", },
|
237
244
|
:'Image' => { },
|
238
245
|
:'ImageExportOptions' => { :'Format' => "image", },
|
@@ -244,6 +251,7 @@ module AsposeSlidesCloud
|
|
244
251
|
:'Merge' => { :'Type' => "Merge", },
|
245
252
|
:'NoFill' => { :'Type' => "NoFill", },
|
246
253
|
:'NotesSlide' => { },
|
254
|
+
:'NotesSlideHeaderFooter' => { },
|
247
255
|
:'OneValueChartDataPoint' => { },
|
248
256
|
:'OneValueSeries' => { :'DataPointType' => "OneValue", },
|
249
257
|
:'Paragraph' => { },
|
@@ -258,6 +266,7 @@ module AsposeSlidesCloud
|
|
258
266
|
:'Portion' => { },
|
259
267
|
:'Portions' => { },
|
260
268
|
:'PptxExportOptions' => { :'Format' => "pptx", },
|
269
|
+
:'ProtectionProperties' => { },
|
261
270
|
:'RemoveShape' => { :'Type' => "RemoveShape", },
|
262
271
|
:'RemoveSlide' => { :'Type' => "RemoveSlide", },
|
263
272
|
:'ReorderSlide' => { :'Type' => "ReoderSlide", },
|
@@ -270,12 +279,15 @@ module AsposeSlidesCloud
|
|
270
279
|
:'SaveSlide' => { :'Type' => "SaveSlide", },
|
271
280
|
:'ScatterChartDataPoint' => { },
|
272
281
|
:'ScatterSeries' => { :'DataPointType' => "Scatter", },
|
282
|
+
:'Section' => { },
|
283
|
+
:'Sections' => { },
|
273
284
|
:'ShapeBase' => { },
|
274
285
|
:'Shapes' => { },
|
275
286
|
:'Slide' => { },
|
276
287
|
:'SlideAnimation' => { },
|
277
288
|
:'SlideBackground' => { },
|
278
289
|
:'SlideComments' => { },
|
290
|
+
:'SlideProperties' => { },
|
279
291
|
:'Slides' => { },
|
280
292
|
:'SolidFill' => { :'Type' => "Solid", },
|
281
293
|
:'SplitDocumentResult' => { },
|
@@ -290,23 +302,23 @@ module AsposeSlidesCloud
|
|
290
302
|
:'XpsExportOptions' => { :'Format' => "xps", },
|
291
303
|
:'BoxAndWhiskerSeries' => { :'DataPointType' => "OneValue", },
|
292
304
|
:'BubbleChartDataPoint' => { },
|
293
|
-
:'Chart' => { :'Type' => "Chart"
|
305
|
+
:'Chart' => { :'Type' => "Chart", },
|
294
306
|
:'DocumentReplaceResult' => { },
|
295
307
|
:'GeometryShape' => { },
|
296
|
-
:'GraphicalObject' => { :'Type' => "GraphicalObject"
|
297
|
-
:'GroupShape' => { :'Type' => "GroupShape"
|
298
|
-
:'OleObjectFrame' => { :'Type' => "OleObjectFrame"
|
308
|
+
:'GraphicalObject' => { :'Type' => "GraphicalObject", },
|
309
|
+
:'GroupShape' => { :'Type' => "GroupShape", },
|
310
|
+
:'OleObjectFrame' => { :'Type' => "OleObjectFrame", },
|
299
311
|
:'SlideReplaceResult' => { },
|
300
|
-
:'SmartArt' => { :'Type' => "SmartArt"
|
301
|
-
:'
|
302
|
-
:'Table' => { :'Type' => "Table",:'ShapeType' => "Table", },
|
312
|
+
:'SmartArt' => { :'Type' => "SmartArt", },
|
313
|
+
:'Table' => { :'Type' => "Table", },
|
303
314
|
:'WaterfallChartDataPoint' => { },
|
304
315
|
:'WaterfallSeries' => { :'DataPointType' => "OneValue", },
|
305
|
-
:'AudioFrame' => { :'Type' => "AudioFrame"
|
316
|
+
:'AudioFrame' => { :'Type' => "AudioFrame", },
|
306
317
|
:'Connector' => { :'Type' => "Connector", },
|
307
|
-
:'PictureFrame' => { :'Type' => "PictureFrame"
|
318
|
+
:'PictureFrame' => { :'Type' => "PictureFrame", },
|
308
319
|
:'Shape' => { :'Type' => "Shape", },
|
309
|
-
:'
|
320
|
+
:'SmartArtShape' => { :'Type' => "SmartArtShape", },
|
321
|
+
:'VideoFrame' => { :'Type' => "VideoFrame", },
|
310
322
|
}
|
311
323
|
end
|
312
324
|
end
|