aspose_slides_cloud 20.12.0 → 21.6.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.
- checksums.yaml +4 -4
- data/README.md +58 -30
- data/TestData/test-unprotected.pptx +0 -0
- data/TestData/test.pdf +0 -0
- data/TestData/test.pptx +0 -0
- data/TestData/watermark.png +0 -0
- data/lib/aspose_slides_cloud.rb +3 -3
- data/lib/aspose_slides_cloud/api/slides_api.rb +9318 -5091
- data/lib/aspose_slides_cloud/api_client.rb +19 -16
- data/lib/aspose_slides_cloud/models/chart.rb +2 -2
- data/lib/aspose_slides_cloud/models/line_format.rb +23 -1
- data/lib/aspose_slides_cloud/models/presentation_to_merge.rb +46 -2
- data/lib/aspose_slides_cloud/models/protection_properties.rb +267 -0
- data/lib/aspose_slides_cloud/models/series.rb +2 -2
- data/lib/aspose_slides_cloud/models/{scale_type.rb → shapes_alignment_type.rb} +11 -6
- data/lib/aspose_slides_cloud/models/slide_properties.rb +315 -0
- data/lib/aspose_slides_cloud/type_registry.rb +5 -2
- data/lib/aspose_slides_cloud/version.rb +1 -1
- data/spec/api/slides_api_spec.rb +25514 -21227
- data/spec/extra/extra_spec.rb +64 -97
- data/spec/spec_utils.rb +21 -22
- data/testRules.json +230 -158
- metadata +9 -5
- data/lib/aspose_slides_cloud/api/slides_api_requests.rb +0 -4146
- data/lib/aspose_slides_cloud/models/size_type.rb +0 -55
data/spec/extra/extra_spec.rb
CHANGED
@@ -25,38 +25,31 @@ require 'spec_helper'
|
|
25
25
|
describe 'SlidesApiExtra' do
|
26
26
|
describe 'specific cases' do
|
27
27
|
it 'multipart request' do
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
o, c, _h = AsposeSlidesCloud::SpecUtils.api.post_slides_pipeline_with_http_info(requestParam)
|
28
|
+
pipeline = AsposeSlidesCloud::Pipeline.new
|
29
|
+
pipeline.input = AsposeSlidesCloud::Input.new
|
30
|
+
pipeline.input.template_data = AsposeSlidesCloud::RequestInputFile.new
|
31
|
+
pipeline.input.template_data.type = "Request"
|
32
|
+
pipeline.input.template_data.index = 0
|
33
|
+
pipeline.input.template = AsposeSlidesCloud::RequestInputFile.new
|
34
|
+
pipeline.input.template.type = "Request"
|
35
|
+
pipeline.input.template.index = 1
|
36
|
+
pipeline.tasks = []
|
37
|
+
pipeline.tasks.push(AsposeSlidesCloud::Save.new)
|
38
|
+
pipeline.tasks[0].type = "Save"
|
39
|
+
pipeline.tasks[0].format = "pptx"
|
40
|
+
pipeline.tasks[0].output = AsposeSlidesCloud::OutputFile.new
|
41
|
+
pipeline.tasks[0].output.type = "Response"
|
42
|
+
files = []
|
43
|
+
files.push(File.binread(File.join(AsposeSlidesCloud::SpecUtils::TEST_DATA_PATH, "TemplatingCVDataWithBase64.xml")))
|
44
|
+
files.push(File.binread(File.join(AsposeSlidesCloud::SpecUtils::TEST_DATA_PATH, "TemplateCV.pptx")))
|
45
|
+
o, c, _h = AsposeSlidesCloud::SpecUtils.api.pipeline_with_http_info(pipeline, files)
|
47
46
|
expect(c).to eq(200)
|
48
47
|
expect(o).not_to be(nil)
|
49
48
|
end
|
50
49
|
|
51
50
|
it 'base shape' do
|
52
51
|
AsposeSlidesCloud::SpecUtils.initialize('GetSlideShape', nil, nil)
|
53
|
-
|
54
|
-
requestParam.name = "test.pptx"
|
55
|
-
requestParam.slide_index = 1
|
56
|
-
requestParam.shape_index = 1
|
57
|
-
requestParam.password = "password"
|
58
|
-
requestParam.folder = "TempSlidesSDK"
|
59
|
-
o = AsposeSlidesCloud::SpecUtils.api.get_slide_shape(requestParam)
|
52
|
+
o = AsposeSlidesCloud::SpecUtils.api.get_shape("test.pptx", 1, 1, "password", "TempSlidesSDK")
|
60
53
|
expect(o.text).to eq("1")
|
61
54
|
end
|
62
55
|
|
@@ -79,13 +72,7 @@ describe 'SlidesApiExtra' do
|
|
79
72
|
#configuration.timeout = 1
|
80
73
|
#api = AsposeSlidesCloud::SlidesApi.new(configuration)
|
81
74
|
|
82
|
-
#
|
83
|
-
#requestParam.name = "test.pptx"
|
84
|
-
#requestParam.slide_index = 1
|
85
|
-
#requestParam.password = "password"
|
86
|
-
#requestParam.folder = "TempSlidesSDK"
|
87
|
-
#requestParam.format = "svg"
|
88
|
-
#api.post_slide_save_as(requestParam)
|
75
|
+
#api.download_slide("test.pptx", 1, "svg", "password", "TempSlidesSDK")
|
89
76
|
end
|
90
77
|
|
91
78
|
it 'nullable properties' do
|
@@ -97,72 +84,52 @@ describe 'SlidesApiExtra' do
|
|
97
84
|
max1 = 104.3
|
98
85
|
max2 = 87
|
99
86
|
AsposeSlidesCloud::SpecUtils.initialize("no_method", "no_property", nil)
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
postRequest.dto.axes.horizontal_axis = AsposeSlidesCloud::Axis.new
|
129
|
-
postRequest.dto.axes.horizontal_axis.is_automatic_min_value = false
|
130
|
-
postRequest.dto.axes.horizontal_axis.min_value = min1
|
131
|
-
postRequest.dto.axes.horizontal_axis.is_automatic_max_value = false
|
132
|
-
postRequest.dto.axes.horizontal_axis.max_value = max1
|
133
|
-
AsposeSlidesCloud::SpecUtils.api.post_add_new_shape(postRequest)
|
134
|
-
|
135
|
-
getRequest = AsposeSlidesCloud::GetSlideShapeRequest.new
|
136
|
-
getRequest.name = fileName
|
137
|
-
getRequest.folder = folderName
|
138
|
-
getRequest.password = password
|
139
|
-
getRequest.slide_index = 1
|
140
|
-
getRequest.shape_index = 4
|
141
|
-
result = AsposeSlidesCloud::SpecUtils.api.get_slide_shape(getRequest)
|
87
|
+
AsposeSlidesCloud::SpecUtils.api.copy_file("TempTests/" + fileName, folderName + "/" + fileName)
|
88
|
+
|
89
|
+
dto = AsposeSlidesCloud::Chart.new
|
90
|
+
dto.chart_type = "Line"
|
91
|
+
dto.width = 400.0
|
92
|
+
dto.height = 300.0
|
93
|
+
dto.title = AsposeSlidesCloud::ChartTitle.new
|
94
|
+
dto.title.has_title = true
|
95
|
+
dto.title.text = "MyTitle"
|
96
|
+
dto.series = []
|
97
|
+
dto.series.push(AsposeSlidesCloud::OneValueSeries.new)
|
98
|
+
dto.series[0].type = "ClusteredColumn"
|
99
|
+
dto.series[0].data_point_type = "OneValue"
|
100
|
+
dto.series[0].name = "Series1"
|
101
|
+
dto.series[0].data_points = []
|
102
|
+
dto.series[0].data_points.push(AsposeSlidesCloud::OneValueChartDataPoint.new)
|
103
|
+
dto.series[0].data_points[0].value = 40.0
|
104
|
+
dto.series[0].data_points.push(AsposeSlidesCloud::OneValueChartDataPoint.new)
|
105
|
+
dto.series[0].data_points[1].value = 50.0
|
106
|
+
dto.axes = AsposeSlidesCloud::Axes.new
|
107
|
+
dto.axes.horizontal_axis = AsposeSlidesCloud::Axis.new
|
108
|
+
dto.axes.horizontal_axis.is_automatic_min_value = false
|
109
|
+
dto.axes.horizontal_axis.min_value = min1
|
110
|
+
dto.axes.horizontal_axis.is_automatic_max_value = false
|
111
|
+
dto.axes.horizontal_axis.max_value = max1
|
112
|
+
AsposeSlidesCloud::SpecUtils.api.create_shape(fileName, 1, dto, nil, nil, password, folderName)
|
113
|
+
|
114
|
+
result = AsposeSlidesCloud::SpecUtils.api.get_shape(fileName, 1, 4, password, folderName)
|
142
115
|
expect(result.axes.horizontal_axis.min_value).to eq(min1)
|
143
116
|
expect(result.axes.horizontal_axis.max_value).to eq(max1)
|
144
117
|
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
putRequest.dto.axes = AsposeSlidesCloud::Axes.new
|
153
|
-
putRequest.dto.axes.horizontal_axis = AsposeSlidesCloud::Axis.new
|
154
|
-
putRequest.dto.axes.horizontal_axis.min_value = min2
|
155
|
-
AsposeSlidesCloud::SpecUtils.api.put_slide_shape_info(putRequest)
|
156
|
-
|
157
|
-
result = AsposeSlidesCloud::SpecUtils.api.get_slide_shape(getRequest)
|
118
|
+
dto = AsposeSlidesCloud::Chart.new
|
119
|
+
dto.axes = AsposeSlidesCloud::Axes.new
|
120
|
+
dto.axes.horizontal_axis = AsposeSlidesCloud::Axis.new
|
121
|
+
dto.axes.horizontal_axis.min_value = min2
|
122
|
+
AsposeSlidesCloud::SpecUtils.api.update_shape(fileName, 1, 4, dto, password, folderName)
|
123
|
+
|
124
|
+
result = AsposeSlidesCloud::SpecUtils.api.get_shape(fileName, 1, 4, password, folderName)
|
158
125
|
expect(result.axes.horizontal_axis.min_value).to eq(min2)
|
159
126
|
expect(result.axes.horizontal_axis.max_value).to eq(max1)
|
160
127
|
|
161
|
-
|
162
|
-
|
163
|
-
AsposeSlidesCloud::SpecUtils.api.
|
128
|
+
dto.axes.horizontal_axis = AsposeSlidesCloud::Axis.new
|
129
|
+
dto.axes.horizontal_axis.max_value = max2
|
130
|
+
AsposeSlidesCloud::SpecUtils.api.update_shape(fileName, 1, 4, dto, password, folderName)
|
164
131
|
|
165
|
-
result = AsposeSlidesCloud::SpecUtils.api.
|
132
|
+
result = AsposeSlidesCloud::SpecUtils.api.get_shape(fileName, 1, 4, password, folderName)
|
166
133
|
expect(result.axes.horizontal_axis.min_value).to eq(min2)
|
167
134
|
expect(result.axes.horizontal_axis.max_value).to eq(max2)
|
168
135
|
end
|
@@ -178,7 +145,7 @@ describe 'SlidesApiExtra' do
|
|
178
145
|
configuration.app_key = config["ClientSecret"]
|
179
146
|
configuration.debugging = config["Debug"]
|
180
147
|
api = AsposeSlidesCloud::SlidesApi.new(configuration)
|
181
|
-
o, c, _h = api.
|
148
|
+
o, c, _h = api.get_api_info_with_http_info
|
182
149
|
expect(c).to eq(200)
|
183
150
|
expect(o).not_to be(nil)
|
184
151
|
end
|
@@ -193,7 +160,7 @@ describe 'SlidesApiExtra' do
|
|
193
160
|
configuration.debugging = config["Debug"]
|
194
161
|
api = AsposeSlidesCloud::SlidesApi.new(configuration)
|
195
162
|
begin
|
196
|
-
o, c, _h = api.
|
163
|
+
o, c, _h = api.get_api_info_with_http_info
|
197
164
|
fail "An exception expected"
|
198
165
|
rescue AsposeSlidesCloud::ApiError => e
|
199
166
|
expect(e.code).to eq(401)
|
@@ -210,10 +177,10 @@ describe 'SlidesApiExtra' do
|
|
210
177
|
configuration.app_key = config["ClientSecret"]
|
211
178
|
configuration.debugging = config["Debug"]
|
212
179
|
api = AsposeSlidesCloud::SlidesApi.new(configuration)
|
213
|
-
api.
|
180
|
+
api.get_api_info_with_http_info
|
214
181
|
configuration.app_sid = "invalid"
|
215
182
|
api = AsposeSlidesCloud::SlidesApi.new(configuration)
|
216
|
-
o, c, _h = api.
|
183
|
+
o, c, _h = api.get_api_info_with_http_info
|
217
184
|
expect(c).to eq(200)
|
218
185
|
expect(o).not_to be(nil)
|
219
186
|
end
|
@@ -228,7 +195,7 @@ describe 'SlidesApiExtra' do
|
|
228
195
|
configuration.access_token = "expired.token"
|
229
196
|
configuration.debugging = config["Debug"]
|
230
197
|
api = AsposeSlidesCloud::SlidesApi.new(configuration)
|
231
|
-
o, c, _h = api.
|
198
|
+
o, c, _h = api.get_api_info_with_http_info
|
232
199
|
expect(c).to eq(200)
|
233
200
|
expect(o).not_to be(nil)
|
234
201
|
end
|
data/spec/spec_utils.rb
CHANGED
@@ -24,11 +24,9 @@ module AsposeSlidesCloud
|
|
24
24
|
class SpecUtils
|
25
25
|
def self.initialize(method, name, value)
|
26
26
|
if !@@is_initialized
|
27
|
-
download_request = AsposeSlidesCloud::DownloadFileRequest.new
|
28
|
-
download_request.path = "TempTests/version.txt"
|
29
27
|
version = ""
|
30
28
|
begin
|
31
|
-
version = SpecUtils.api.download_file(
|
29
|
+
version = SpecUtils.api.download_file("TempTests/version.txt")
|
32
30
|
rescue AsposeSlidesCloud::ApiError => e
|
33
31
|
if e.code != 404
|
34
32
|
fail "Could not read from storage"
|
@@ -38,16 +36,10 @@ module AsposeSlidesCloud
|
|
38
36
|
Dir.entries(TEST_DATA_PATH).each { |f|
|
39
37
|
if !File.directory? File.join(TEST_DATA_PATH, f)
|
40
38
|
fd = File.binread(File.join(TEST_DATA_PATH, f))
|
41
|
-
|
42
|
-
upload_request.file = fd
|
43
|
-
upload_request.path = "TempTests/" + f
|
44
|
-
SpecUtils.api.upload_file(upload_request)
|
39
|
+
SpecUtils.api.upload_file("TempTests/" + f, fd)
|
45
40
|
end
|
46
41
|
}
|
47
|
-
|
48
|
-
upload_request.file = EXPECTED_TEST_DATA_VERSION
|
49
|
-
upload_request.path = "TempTests/version.txt"
|
50
|
-
SpecUtils.api.upload_file(upload_request)
|
42
|
+
SpecUtils.api.upload_file("TempTests/version.txt", EXPECTED_TEST_DATA_VERSION)
|
51
43
|
end
|
52
44
|
@@is_initialized = true
|
53
45
|
end
|
@@ -66,21 +58,28 @@ module AsposeSlidesCloud
|
|
66
58
|
end
|
67
59
|
files.each do |path, rule|
|
68
60
|
if rule["Action"] == "Put"
|
69
|
-
|
70
|
-
copy_request.src_path = "TempTests/" + rule['ActualName']
|
71
|
-
copy_request.dest_path = path
|
72
|
-
SpecUtils.api.copy_file(copy_request)
|
61
|
+
SpecUtils.api.copy_file("TempTests/" + rule['ActualName'], path)
|
73
62
|
elsif rule["Action"] == "Delete"
|
74
|
-
|
75
|
-
delete_request.path = path
|
76
|
-
SpecUtils.api.delete_file(delete_request)
|
63
|
+
SpecUtils.api.delete_file(path)
|
77
64
|
end
|
78
65
|
end
|
79
66
|
end
|
80
67
|
|
81
68
|
def self.get_param_value(name, method, type)
|
82
69
|
if type == 'File'
|
83
|
-
|
70
|
+
fileName = "test.pptx"
|
71
|
+
if method.casecmp("ImportFromPdf") == 0
|
72
|
+
fileName = "test.pdf"
|
73
|
+
elsif name.casecmp("Image") == 0
|
74
|
+
fileName = "watermark.png"
|
75
|
+
end
|
76
|
+
return File.binread(File.join(TEST_DATA_PATH, fileName))
|
77
|
+
end
|
78
|
+
if type == 'File[]'
|
79
|
+
files = []
|
80
|
+
files.push(File.binread(File.join(AsposeSlidesCloud::SpecUtils::TEST_DATA_PATH, "test.pptx")))
|
81
|
+
files.push(File.binread(File.join(AsposeSlidesCloud::SpecUtils::TEST_DATA_PATH, "test-unprotected.pptx")))
|
82
|
+
return files
|
84
83
|
end
|
85
84
|
value = "test" + name
|
86
85
|
SpecUtils.test_rules["Values"].each do |rule|
|
@@ -130,8 +129,8 @@ module AsposeSlidesCloud
|
|
130
129
|
def self.good_rule?(rule, name, method)
|
131
130
|
(not rule.key?("Language") or rule["Language"].casecmp("Ruby") == 0) \
|
132
131
|
and (not rule.key?("Invalid") or ((name != nil) == rule["Invalid"])) \
|
133
|
-
and (not rule.key?("Parameter") or rule["Parameter"].casecmp(name) == 0) \
|
134
|
-
and (not rule.key?("Method") or rule["Method"].casecmp(method) == 0)
|
132
|
+
and (not rule.key?("Parameter") or (name != nil and rule["Parameter"].casecmp(name) == 0)) \
|
133
|
+
and (not rule.key?("Method") or (method != nil and rule["Method"].casecmp(method) == 0))
|
135
134
|
end
|
136
135
|
|
137
136
|
def self.untemplatize(template, value)
|
@@ -139,7 +138,7 @@ module AsposeSlidesCloud
|
|
139
138
|
value
|
140
139
|
else
|
141
140
|
result = template
|
142
|
-
if template.is_a? String and template.match
|
141
|
+
if template.is_a? String and template.match("%v")
|
143
142
|
result = "" + template
|
144
143
|
if value != nil
|
145
144
|
result["%v"] = value.to_s
|
data/testRules.json
CHANGED
@@ -1,43 +1,41 @@
|
|
1
1
|
{
|
2
2
|
"Files": [
|
3
3
|
{ "Action": "Put", "File": "test.pptx" },
|
4
|
-
{ "Action": "Put", "File": "test-unprotected.pptx", "Method": "
|
5
|
-
{ "Action": "Put", "File": "test-unprotected.pptx", "Method": "
|
6
|
-
{ "Action": "
|
7
|
-
{ "Action": "Delete", "File": "test.pptx", "Method": "
|
4
|
+
{ "Action": "Put", "File": "test-unprotected.pptx", "Method": "CreateSlide" },
|
5
|
+
{ "Action": "Put", "File": "test-unprotected.pptx", "Method": "DeleteSlides" },
|
6
|
+
{ "Action": "Put", "File": "test-unprotected.pptx", "Method": "UpdateSlide" },
|
7
|
+
{ "Action": "Delete", "File": "test.pptx", "Method": "CreatePresentation" },
|
8
|
+
{ "Action": "Delete", "File": "test.pptx", "Method": "ImportFromHtml" },
|
8
9
|
{ "Action": "Delete", "File": "test.pptx", "Method": "UploadFile" },
|
9
10
|
{ "Action": "Delete", "Folder": "%v", "File": "test.pptx", "Parameter": "Folder" },
|
10
11
|
{ "Action": "Delete", "File": "%v", "Parameter": "Name" },
|
11
|
-
{ "Action": "Delete", "File": "changedtest.pptx", "Method": "
|
12
|
-
{ "Action": "Delete", "File": "invalidchangedtest.pptx", "Method": "
|
13
|
-
{ "Action": "Delete", "Folder": "TempSlidesSDKinvalid", "File": "changedtest.pptx", "Method": "
|
14
|
-
{ "Action": "Delete", "File": "changedtest.pptx", "Method": "
|
15
|
-
{ "Action": "Delete", "File": "invalidchangedtest.pptx", "Method": "
|
16
|
-
{ "Action": "Delete", "Folder": "TempSlidesSDKinvalid", "File": "changedtest.pptx", "Method": "
|
17
|
-
{ "Action": "Delete", "File": "changedtest.pptx", "Method": "
|
18
|
-
{ "Action": "Delete", "File": "invalidchangedtest.pptx", "Method": "
|
19
|
-
{ "Action": "Delete", "Folder": "
|
20
|
-
{ "Action": "Delete", "File": "changedtest.pptx", "Method": "
|
21
|
-
{ "Action": "Delete", "File": "invalidchangedtest.pptx", "Method": "PutNewPresentation" },
|
22
|
-
{ "Action": "Delete", "Folder": "TempSlidesSDKinvalid", "File": "changedtest.pptx", "Method": "PutNewPresentation" },
|
12
|
+
{ "Action": "Delete", "File": "changedtest.pptx", "Method": "CreatePresentation" },
|
13
|
+
{ "Action": "Delete", "File": "invalidchangedtest.pptx", "Method": "CreatePresentation" },
|
14
|
+
{ "Action": "Delete", "Folder": "TempSlidesSDKinvalid", "File": "changedtest.pptx", "Method": "CreatePresentation" },
|
15
|
+
{ "Action": "Delete", "File": "changedtest.pptx", "Method": "CreatePresentationFromSource" },
|
16
|
+
{ "Action": "Delete", "File": "invalidchangedtest.pptx", "Method": "CreatePresentationFromSource" },
|
17
|
+
{ "Action": "Delete", "Folder": "TempSlidesSDKinvalid", "File": "changedtest.pptx", "Method": "CreatePresentationFromSource" },
|
18
|
+
{ "Action": "Delete", "File": "changedtest.pptx", "Method": "CreatePresentationFromTemplate" },
|
19
|
+
{ "Action": "Delete", "File": "invalidchangedtest.pptx", "Method": "CreatePresentationFromTemplate" },
|
20
|
+
{ "Action": "Delete", "Folder": "invalidTempSlidesSDK", "File": "test.pptx", "Method": "CreatePresentationFromTemplate" },
|
21
|
+
{ "Action": "Delete", "Folder": "TempSlidesSDKinvalid", "File": "changedtest.pptx", "Method": "CreatePresentationFromTemplate" },
|
23
22
|
{ "Action": "Delete", "Folder": "invalidTempSlidesSDK", "File": "test.pptx", "Parameter": "CloneFrom" },
|
24
23
|
{ "Action": "Delete", "Folder": "invalidTempSlidesSDK", "File": "test.pptx", "Parameter": "SourcePath" }
|
25
24
|
],
|
26
25
|
"Values": [
|
27
26
|
{ "InvalidValue": "%vinvalid" },
|
28
27
|
{ "Value": "test.pptx", "InvalidValue": "invalid%v", "Parameter": "Name" },
|
29
|
-
{ "Value": "test-unprotected.pptx", "Parameter": "Name", "Method": "
|
30
|
-
{ "Value": "test-unprotected.pptx", "Parameter": "Name", "Method": "
|
31
|
-
{ "Value": "test-unprotected.pptx", "Parameter": "Name", "Method": "
|
32
|
-
{ "Value": "changedtest.pptx", "Parameter": "Name", "Method": "
|
33
|
-
{ "Value": "changedtest.pptx", "Parameter": "Name", "Method": "
|
34
|
-
{ "Value": "changedtest.pptx", "Parameter": "Name", "Method": "PostSlidesDocumentFromTemplate" },
|
28
|
+
{ "Value": "test-unprotected.pptx", "Parameter": "Name", "Method": "UpdateSlide" },
|
29
|
+
{ "Value": "test-unprotected.pptx", "Parameter": "Name", "Method": "CreateSlide" },
|
30
|
+
{ "Value": "test-unprotected.pptx", "Parameter": "Name", "Method": "DeleteSlides" },
|
31
|
+
{ "Value": "changedtest.pptx", "Parameter": "Name", "Method": "CreatePresentationFromSource" },
|
32
|
+
{ "Value": "changedtest.pptx", "Parameter": "Name", "Method": "CreatePresentationFromTemplate" },
|
35
33
|
{ "Value": "TempSlidesSDK", "Parameter": "Folder" },
|
36
34
|
{ "Value": "TempSlidesSDK/test.pptx", "InvalidValue": "invalid%v", "Parameter": "SourcePath" },
|
37
35
|
{ "Value": "TempSlidesSDK/test.pptx", "InvalidValue": "invalid%v", "Parameter": "SrcPath" },
|
38
36
|
{ "Value": "TempSlidesSDK/changedtest.pptx", "InvalidValue": "invalid%v", "Parameter": "DestPath" },
|
39
37
|
{ "Value": "TempSlidesSDK/test.pptx", "InvalidValue": "invalid%v", "Parameter": "TemplatePath" },
|
40
|
-
{ "Value": "TempSlidesSDK/TemplateCV.pptx", "InvalidValue": "invalid%v", "Parameter": "TemplatePath", "Method": "
|
38
|
+
{ "Value": "TempSlidesSDK/TemplateCV.pptx", "InvalidValue": "invalid%v", "Parameter": "TemplatePath", "Method": "CreatePresentation" },
|
41
39
|
{ "Value": "TempSlidesSDK/test.pptx", "InvalidValue": "invalid%v", "Parameter": "CloneFrom" },
|
42
40
|
{ "Value": "TempSlidesSDK/test.pptx", "InvalidValue": "invalid%v", "Parameter": "Source" },
|
43
41
|
{ "Value": "TempSlidesSDK/out.pdf", "Parameter": "OutPath" },
|
@@ -46,9 +44,9 @@
|
|
46
44
|
{ "Value": "password", "Parameter": "TemplatePassword" },
|
47
45
|
{ "Value": "password", "Parameter": "SourcePassword" },
|
48
46
|
{ "Value": "password", "Parameter": "CloneFromPassword" },
|
49
|
-
{ "Value": null, "Parameter": "Password", "Method": "
|
50
|
-
{ "Value": null, "Parameter": "Password", "Method": "
|
51
|
-
{ "Value": null, "Parameter": "Password", "Method": "
|
47
|
+
{ "Value": null, "Parameter": "Password", "Method": "UpdateSlide" },
|
48
|
+
{ "Value": null, "Parameter": "Password", "Method": "CreateSlide" },
|
49
|
+
{ "Value": null, "Parameter": "Password", "Method": "DeleteSlides" },
|
52
50
|
{ "Value": null, "Parameter": "Storage" },
|
53
51
|
{ "Value": null, "Parameter": "StorageName" },
|
54
52
|
{ "Value": "testStorage", "Parameter": "StorageName", "Method": "StorageExists" },
|
@@ -58,42 +56,42 @@
|
|
58
56
|
{ "Value": null, "Parameter": "CloneFromStorage" },
|
59
57
|
{ "Value": null, "Parameter": "SourceStorage" },
|
60
58
|
{ "Value": 1, "InvalidValue": 593, "Parameter": "SlideIndex" },
|
61
|
-
{ "Value": 5, "Parameter": "SlideIndex", "Method": "
|
59
|
+
{ "Value": 5, "Parameter": "SlideIndex", "Method": "CreateSection" },
|
62
60
|
{ "Value": null, "InvalidValue": [1, 593], "Parameter": "Slides" },
|
63
61
|
{ "Value": 1, "InvalidValue": 593, "Parameter": "SlideToCopy" },
|
64
62
|
{ "Value": null, "InvalidValue": 593, "Parameter": "SlideToClone" },
|
65
63
|
{ "Value": 1, "InvalidValue": 593, "Parameter": "ShapeIndex" },
|
66
|
-
{ "Value": 3, "Parameter": "SlideIndex", "Method": "
|
67
|
-
{ "Value": 3, "Parameter": "SlideIndex", "Method": "
|
64
|
+
{ "Value": 3, "Parameter": "SlideIndex", "Method": "CreateChartSeries" },
|
65
|
+
{ "Value": 3, "Parameter": "SlideIndex", "Method": "UpdateChartSeries" },
|
68
66
|
{ "Value": 3, "Parameter": "SlideIndex", "Method": "DeleteChartSeries" },
|
69
|
-
{ "Value": 3, "Parameter": "SlideIndex", "Method": "
|
70
|
-
{ "Value": 3, "Parameter": "SlideIndex", "Method": "
|
67
|
+
{ "Value": 3, "Parameter": "SlideIndex", "Method": "CreateChartCategory" },
|
68
|
+
{ "Value": 3, "Parameter": "SlideIndex", "Method": "UpdateChartCategory" },
|
71
69
|
{ "Value": 3, "Parameter": "SlideIndex", "Method": "DeleteChartCategory" },
|
72
|
-
{ "Value": 3, "Parameter": "SlideIndex", "Method": "
|
73
|
-
{ "Value": 3, "Parameter": "SlideIndex", "Method": "
|
70
|
+
{ "Value": 3, "Parameter": "SlideIndex", "Method": "CreateChartDataPoint" },
|
71
|
+
{ "Value": 3, "Parameter": "SlideIndex", "Method": "UpdateChartDataPoint" },
|
74
72
|
{ "Value": 3, "Parameter": "SlideIndex", "Method": "DeleteChartDataPoint" },
|
75
|
-
{ "Value": 2, "Parameter": "ShapeIndex", "Method": "
|
76
|
-
{ "Value": 2, "Parameter": "ShapeIndex", "Method": "
|
73
|
+
{ "Value": 2, "Parameter": "ShapeIndex", "Method": "CreateChartDataPoint" },
|
74
|
+
{ "Value": 2, "Parameter": "ShapeIndex", "Method": "UpdateChartDataPoint" },
|
77
75
|
{ "Value": 1, "Parameter": "ShapeIndex", "Method": "DeleteSlideSubshape" },
|
78
76
|
{ "Value": 1, "Parameter": "ShapeIndex", "Method": "DeleteSlideSubshapes" },
|
79
77
|
{ "Value": 1, "Parameter": "ShapeIndex", "Method": "DeleteSubshapeParagraph" },
|
80
78
|
{ "Value": 1, "Parameter": "ShapeIndex", "Method": "DeleteSubshapeParagraphs" },
|
81
79
|
{ "Value": 1, "Parameter": "ShapeIndex", "Method": "DeleteSubshapePortion" },
|
82
80
|
{ "Value": 1, "Parameter": "ShapeIndex", "Method": "DeleteSubshapePortions" },
|
83
|
-
{ "Value": 1, "Parameter": "ShapeIndex", "Method": "
|
84
|
-
{ "Value": 1, "Parameter": "ShapeIndex", "Method": "
|
85
|
-
{ "Value": 1, "Parameter": "ShapeIndex", "Method": "
|
86
|
-
{ "Value": 1, "Parameter": "ShapeIndex", "Method": "
|
81
|
+
{ "Value": 1, "Parameter": "ShapeIndex", "Method": "GetSubshape" },
|
82
|
+
{ "Value": 1, "Parameter": "ShapeIndex", "Method": "GetSubshapes" },
|
83
|
+
{ "Value": 1, "Parameter": "ShapeIndex", "Method": "GetSubshapeParagraph" },
|
84
|
+
{ "Value": 1, "Parameter": "ShapeIndex", "Method": "GetSubshapeParagraphs" },
|
87
85
|
{ "Value": 1, "Parameter": "ShapeIndex", "Method": "GetSubshapeParagraphPortion" },
|
88
86
|
{ "Value": 1, "Parameter": "ShapeIndex", "Method": "GetSubshapeParagraphPortions" },
|
89
|
-
{ "Value": 1, "Parameter": "ShapeIndex", "Method": "
|
90
|
-
{ "Value": 1, "Parameter": "ShapeIndex", "Method": "
|
91
|
-
{ "Value": 1, "Parameter": "ShapeIndex", "Method": "
|
92
|
-
{ "Value": 1, "Parameter": "ShapeIndex", "Method": "
|
93
|
-
{ "Value": 1, "Parameter": "ShapeIndex", "Method": "
|
94
|
-
{ "Value": 1, "Parameter": "ShapeIndex", "Method": "
|
95
|
-
{ "Value": 1, "Parameter": "ShapeIndex", "Method": "
|
96
|
-
{ "Value": 1, "Parameter": "ShapeIndex", "Method": "
|
87
|
+
{ "Value": 1, "Parameter": "ShapeIndex", "Method": "CreateSubshape" },
|
88
|
+
{ "Value": 1, "Parameter": "ShapeIndex", "Method": "CreateSubshapeParagraph" },
|
89
|
+
{ "Value": 1, "Parameter": "ShapeIndex", "Method": "CreateSubshapePortion" },
|
90
|
+
{ "Value": 1, "Parameter": "ShapeIndex", "Method": "DownloadSubshape" },
|
91
|
+
{ "Value": 1, "Parameter": "ShapeIndex", "Method": "UpdateSubshapePortion" },
|
92
|
+
{ "Value": 1, "Parameter": "ShapeIndex", "Method": "UpdateSubshapeParagraph" },
|
93
|
+
{ "Value": 1, "Parameter": "ShapeIndex", "Method": "UpdateSubshape" },
|
94
|
+
{ "Value": 1, "Parameter": "ShapeIndex", "Method": "SaveSubshape" },
|
97
95
|
{ "Value": null, "InvalidValue": [1, 593], "Parameter": "Shapes" },
|
98
96
|
{ "Value": null, "InvalidValue": 593, "Parameter": "ShapeToClone" },
|
99
97
|
{ "Value": 1, "InvalidValue": 593, "Parameter": "SeriesIndex" },
|
@@ -109,6 +107,8 @@
|
|
109
107
|
{ "Value": 2, "InvalidValue": 593, "Parameter": "SectionIndex" },
|
110
108
|
{ "Value": 1, "InvalidValue": 593, "Parameter": "Index" },
|
111
109
|
{ "Value": 2, "InvalidValue": 593, "Parameter": "NewPosition" },
|
110
|
+
{ "Value": 20, "InvalidValue": 593, "Parameter": "FontHeight" },
|
111
|
+
{ "Value": 256, "InvalidValue": 593, "Parameter": "FontColor" },
|
112
112
|
{ "Value": null, "InvalidValue": 593, "Parameter": "OldPosition" },
|
113
113
|
{ "Value": 1, "InvalidValue": 593, "Parameter": "Position" },
|
114
114
|
{ "Value": [2, 1], "InvalidValue": [1, 593], "Parameter": "OldPositions" },
|
@@ -125,6 +125,7 @@
|
|
125
125
|
{ "Value": "TempSlidesSDK/test.pptx", "InvalidValue": "invalid%v", "Parameter": "Path", "Method": "ObjectExists" },
|
126
126
|
{ "Value": "TempSlidesSDK", "Parameter": "Path", "Method": "DeleteFolder" },
|
127
127
|
{ "Value": "testProperty", "Parameter": "PropertyName" },
|
128
|
+
{ "Value": null, "Parameter": "Author" },
|
128
129
|
{ "InvalidValue": null, "Parameter": "Stream" },
|
129
130
|
{
|
130
131
|
"Value": "<staff><person><name>John Doe</name><address><line1>10 Downing Street</line1><line2>London</line2></address><phone>+457 123456</phone><bio>Hi, I'm John and this is my CV</bio><skills><skill><title>C#</title><level>Excellent</level></skill><skill><title>C++</title><level>Good</level></skill><skill><title>Java</title><level>Average</level></skill></skills></person></staff>",
|
@@ -132,7 +133,12 @@
|
|
132
133
|
},
|
133
134
|
{ "Value": {}, "InvalidValue": null, "Type": "Pipeline", "Parameter": "Request" },
|
134
135
|
{ "Value": {}, "InvalidValue": null, "Type": "PresentationsMergeRequest", "Parameter": "Request" },
|
135
|
-
{ "Value": {}, "InvalidValue": null, "Type": "OrderedMergeRequest", "Parameter": "Request" },
|
136
|
+
{ "Value": { "Presentations": [{ "Path": "test.pptx", "Password": "password" }, { "Path": "test-unprotected.pptx" }] }, "InvalidValue": null, "Type": "OrderedMergeRequest", "Parameter": "Request" },
|
137
|
+
{ "Value": { "Presentations": [{ "Path": "file1", "Password": "password" }, { "Path": "file2" }] }, "InvalidValue": null, "Type": "OrderedMergeRequest", "Parameter": "Request", "Language": "Go" },
|
138
|
+
{ "Value": { "Presentations": [{ "Path": "file1", "Password": "password" }, { "Path": "file2" }] }, "InvalidValue": null, "Type": "OrderedMergeRequest", "Parameter": "Request", "Language": "Ruby" },
|
139
|
+
{ "Value": { "Presentations": [{ "Path": "file1", "Password": "password" }, { "Path": "file2" }] }, "InvalidValue": null, "Type": "OrderedMergeRequest", "Parameter": "Request", "Language": "Perl" },
|
140
|
+
{ "Value": { "Presentations": [{ "Path": "file1", "Password": "password" }, { "Path": "file2" }] }, "InvalidValue": null, "Type": "OrderedMergeRequest", "Parameter": "Request", "Language": "CPP" },
|
141
|
+
{ "Value": {}, "InvalidValue": null, "Type": "OrderedMergeRequest", "Parameter": "Request", "Method": "OrderedMerge" },
|
136
142
|
{ "Value": {}, "InvalidValue": null, "Type": "Pipeline", "Parameter": "Pipeline" },
|
137
143
|
{ "Value": {}, "InvalidValue": null, "Type": "SlideBackground", "Parameter": "Background" },
|
138
144
|
{ "Value": {}, "InvalidValue": null, "Type": "SlideAnimation", "Parameter": "Animation" },
|
@@ -152,36 +158,51 @@
|
|
152
158
|
"Type": "Shape",
|
153
159
|
"Parameter": "DTO"
|
154
160
|
},
|
155
|
-
{ "Value":
|
156
|
-
{ "Value":
|
157
|
-
{ "Value": { "
|
158
|
-
{ "Value": {
|
161
|
+
{ "Value": null, "InvalidValue": null, "Parameter": "PictureFrame" },
|
162
|
+
{ "Value": null, "InvalidValue": null, "Parameter": "Shape" },
|
163
|
+
{ "Value": { "Type": "Connector" }, "InvalidValue": null, "Type": "Shape", "Parameter": "DTO", "Language": "CPP" },
|
164
|
+
{ "Value": {}, "InvalidValue": null, "Type": "SlideProperties", "Parameter": "DTO", "Method": "SetSlideProperties" },
|
165
|
+
{ "Value": {}, "InvalidValue": null, "Type": "ProtectionProperties", "Parameter": "DTO", "Method": "SetProtection" },
|
166
|
+
{ "Value": {}, "InvalidValue": null, "Type": "ProtectionProperties", "Parameter": "DTO", "Method": "SetProtectionOnline" },
|
167
|
+
{ "Value": {}, "InvalidValue": null, "Type": "ViewProperties", "Parameter": "DTO", "Method": "SetViewProperties" },
|
168
|
+
{ "Value": { "Text": "testPortion" }, "InvalidValue": null, "Type": "Portion", "Parameter": "DTO", "Method": "CreatePortion" },
|
169
|
+
{ "Value": { "Text": "testPortion" }, "InvalidValue": null, "Type": "Portion", "Parameter": "DTO", "Method": "CreateSubshapePortion" },
|
170
|
+
{ "Value": { "Text": "testPortion" }, "InvalidValue": null, "Type": "Portion", "Parameter": "DTO", "Method": "CreateNotesSlidePortion" },
|
171
|
+
{ "Value": { "Author": "Caesar", "Text": "Veni vidi vici" }, "InvalidValue": null, "Type": "SlideComment", "Parameter": "DTO", "Method": "CreateComment" },
|
172
|
+
{ "Value": { "Author": "Caesar", "Text": "Veni vidi vici" }, "InvalidValue": null, "Type": "SlideComment", "Parameter": "DTO", "Method": "CreateCommentOnline" },
|
159
173
|
{ "Value": { "MasterSlide": { "Href": "masterSlides/2" } }, "InvalidValue": null, "Type": "LayoutSlide", "Parameter": "SlideDTO" },
|
160
|
-
{ "Value": { "LayoutSlide": { "Uri": { "Href": "TitleOnly" } } }, "InvalidValue": null, "Type": "Slide", "Parameter": "SlideDTO", "Method": "
|
161
|
-
{ "Value": { "List": [] }, "InvalidValue": null, "Type": "DocumentProperties", "Parameter": "Properties" },
|
174
|
+
{ "Value": { "LayoutSlide": { "Uri": { "Href": "TitleOnly" } } }, "InvalidValue": null, "Type": "Slide", "Parameter": "SlideDTO", "Method": "UpdateSlide" },
|
175
|
+
{ "Value": { "List": [{ "Name": "Prop001", "Value": "Value001" }] }, "InvalidValue": null, "Type": "DocumentProperties", "Parameter": "Properties" },
|
162
176
|
{
|
163
177
|
"Value": { "Name": "testProperty001", "Value": "testValue002" },
|
164
178
|
"InvalidValue": null,
|
165
179
|
"Type": "DocumentProperty",
|
166
180
|
"Parameter": "Property"
|
167
181
|
},
|
168
|
-
{ "Value": {}, "InvalidValue": null, "Type": "Sections", "Parameter": "Sections", "Method": "
|
182
|
+
{ "Value": {}, "InvalidValue": null, "Type": "Sections", "Parameter": "Sections", "Method": "SetSections" },
|
169
183
|
{ "Value": "pdf", "Parameter": "Format" },
|
170
184
|
{ "InvalidValue": "svg", "Parameter": "Format", "Language": "NET" },
|
171
|
-
{ "InvalidValue": "gif", "Parameter": "Format", "Method": "
|
172
|
-
{ "InvalidValue": "gif", "Parameter": "Format", "Method": "
|
173
|
-
{ "InvalidValue": "gif", "Parameter": "Format", "Method": "
|
174
|
-
{ "
|
175
|
-
{ "
|
176
|
-
{ "
|
177
|
-
{ "Value": "png", "Parameter": "Format", "Method": "
|
178
|
-
{ "Value": "png", "Parameter": "Format", "Method": "
|
179
|
-
{ "Value": "png", "Parameter": "Format", "Method": "
|
180
|
-
{ "Value": "png", "Parameter": "Format", "Method": "
|
181
|
-
{ "Value": "png", "Parameter": "Format", "Method": "
|
182
|
-
{ "Value": "png", "Parameter": "Format", "Method": "
|
183
|
-
{ "Value": "png", "Parameter": "Format", "Method": "
|
184
|
-
{ "Value": "png", "Parameter": "Format", "Method": "
|
185
|
+
{ "InvalidValue": "gif", "Parameter": "Format", "Method": "DownloadNotesSlide", "Language": "NET" },
|
186
|
+
{ "InvalidValue": "gif", "Parameter": "Format", "Method": "DownloadNotesSlideOnline", "Language": "NET" },
|
187
|
+
{ "InvalidValue": "gif", "Parameter": "Format", "Method": "DownloadImage", "Language": "NET" },
|
188
|
+
{ "InvalidValue": "gif", "Parameter": "Format", "Method": "DownloadImageOnline", "Language": "NET" },
|
189
|
+
{ "InvalidValue": "gif", "Parameter": "Format", "Method": "DownloadImages", "Language": "NET" },
|
190
|
+
{ "InvalidValue": "gif", "Parameter": "Format", "Method": "DownloadImagesOnline", "Language": "NET" },
|
191
|
+
{ "Value": "png", "Parameter": "Format", "Method": "DownloadNotesSlide" },
|
192
|
+
{ "Value": "png", "Parameter": "Format", "Method": "DownloadNotesSlideOnline" },
|
193
|
+
{ "Value": "png", "Parameter": "Format", "Method": "DownloadShape" },
|
194
|
+
{ "Value": "png", "Parameter": "Format", "Method": "SaveShape" },
|
195
|
+
{ "Value": "png", "Parameter": "Format", "Method": "DownloadShapeOnline" },
|
196
|
+
{ "Value": "png", "Parameter": "Format", "Method": "SaveShapeOnline" },
|
197
|
+
{ "Value": "png", "Parameter": "Format", "Method": "DownloadSubshape" },
|
198
|
+
{ "Value": "png", "Parameter": "Format", "Method": "SaveSubshape" },
|
199
|
+
{ "Value": "png", "Parameter": "Format", "Method": "DownloadNotesSlideShape" },
|
200
|
+
{ "Value": "png", "Parameter": "Format", "Method": "SaveNotesSlideShape" },
|
201
|
+
{ "Value": "png", "Parameter": "Format", "Method": "DownloadImage" },
|
202
|
+
{ "Value": "png", "Parameter": "Format", "Method": "DownloadImageOnline" },
|
203
|
+
{ "Value": "png", "Parameter": "Format", "Method": "DownloadImages" },
|
204
|
+
{ "Value": "png", "Parameter": "Format", "Method": "DownloadImagesOnline" },
|
205
|
+
{ "Value": "AlignTop", "InvalidValue": "AlignBottom", "Parameter": "AlignmentType" },
|
185
206
|
{ "Value": null, "InvalidValue": "Shape", "Parameter": "Bounds" },
|
186
207
|
{ "Value": "OnScreen", "InvalidValue": "Ledger", "Parameter": "SizeType" },
|
187
208
|
{ "Value": "DoNotScale", "InvalidValue": "Maximize", "Parameter": "ScaleType" },
|
@@ -196,14 +217,15 @@
|
|
196
217
|
{ "Value": null, "InvalidValue": false, "Parameter": "ApplyToAll" },
|
197
218
|
{ "Value": null, "InvalidValue": false, "Parameter": "IsImageDataEmbedded" },
|
198
219
|
{ "Value": null, "InvalidValue": false, "Parameter": "WithSlides" },
|
220
|
+
{ "Value": null, "InvalidValue": false, "Parameter": "AlignToSlide" },
|
199
221
|
{ "Value": null, "InvalidValue": 593, "Parameter": "JpegQuality" },
|
200
222
|
{ "Value": null, "InvalidValue": 593.5, "Parameter": "ScaleX" },
|
201
223
|
{ "Value": null, "InvalidValue": 593.5, "Parameter": "ScaleY" },
|
202
|
-
{ "
|
203
|
-
{ "Value": null, "
|
224
|
+
{ "InvalidValue": null, "Parameter": "Files" },
|
225
|
+
{ "Value": null, "Parameter": "VersionId" }
|
204
226
|
],
|
205
227
|
"OKToReturnNull": [
|
206
|
-
{ "Method": "
|
228
|
+
{ "Method": "Pipeline" }
|
207
229
|
],
|
208
230
|
"OKToNotFail": [
|
209
231
|
{ "Parameter": "JpegQuality" },
|
@@ -223,6 +245,7 @@
|
|
223
245
|
{ "Parameter": "IsImageDataEmbedded" },
|
224
246
|
{ "Parameter": "Stream" },
|
225
247
|
{ "Parameter": "Html" },
|
248
|
+
{ "Parameter": "Pdf" },
|
226
249
|
{ "Parameter": "Options" },
|
227
250
|
{ "Parameter": "ApplyToAll" },
|
228
251
|
{ "Parameter": "SlideToCopy" },
|
@@ -238,10 +261,19 @@
|
|
238
261
|
{ "Parameter": "IgnoreCase" },
|
239
262
|
{ "Parameter": "Document" },
|
240
263
|
{ "Parameter": "Color" },
|
241
|
-
{ "Parameter": "
|
264
|
+
{ "Parameter": "Image" },
|
265
|
+
{ "Parameter": "PictureFrame" },
|
266
|
+
{ "Parameter": "Shape" },
|
267
|
+
{ "Parameter": "FontColor" },
|
268
|
+
{ "Parameter": "FontHeight" },
|
269
|
+
{ "Parameter": "FontName" },
|
270
|
+
{ "Parameter": "Text" },
|
271
|
+
{ "Parameter": "ShapeName" },
|
272
|
+
{ "Parameter": "Format", "Method": "UpdateSlide" },
|
242
273
|
{ "Parameter": "Format", "Language": "NET" },
|
243
|
-
{ "Parameter": "Format", "Language": "Java", "Method": "
|
244
|
-
{ "Parameter": "Dto", "Method": "
|
274
|
+
{ "Parameter": "Format", "Language": "Java", "Method": "Split" },
|
275
|
+
{ "Parameter": "Dto", "Method": "CreateNotesSlide" },
|
276
|
+
{ "Parameter": "DataPoint", "Language": "PHP" },
|
245
277
|
{ "Parameter": "Dto", "Language": "Swift" },
|
246
278
|
{ "Parameter": "SlideDto", "Language": "Swift" },
|
247
279
|
{ "Parameter": "Request", "Language": "Swift" },
|
@@ -254,28 +286,28 @@
|
|
254
286
|
{ "Parameter": "Category", "Language": "Swift" },
|
255
287
|
{ "Parameter": "Series", "Language": "Swift" },
|
256
288
|
{ "Parameter": "Sections", "Language": "Swift" },
|
257
|
-
{ "Parameter": "Position", "Method": "
|
258
|
-
{ "Parameter": "Name", "Method": "
|
259
|
-
{ "Parameter": "Name", "Method": "
|
260
|
-
{ "Parameter": "Name", "Method": "
|
261
|
-
{ "Parameter": "Name", "Method": "
|
262
|
-
{ "Parameter": "Name", "Method": "
|
263
|
-
{ "Parameter": "
|
264
|
-
{ "Parameter": "Folder", "Method": "
|
265
|
-
{ "Parameter": "Folder", "Method": "
|
266
|
-
{ "Parameter": "Folder", "Method": "
|
267
|
-
{ "Parameter": "Folder", "Method": "
|
268
|
-
{ "Parameter": "
|
269
|
-
{ "Parameter": "
|
270
|
-
{ "Parameter": "Password", "Method": "
|
271
|
-
{ "Parameter": "Password", "Method": "
|
272
|
-
{ "Parameter": "
|
273
|
-
{ "Parameter": "Password", "Method": "PostSlidesDocumentFromTemplate" },
|
274
|
-
{ "Parameter": "Password", "Method": "PutNewPresentation" },
|
275
|
-
{ "Parameter": "Data", "Method": "PostSlidesDocument" },
|
289
|
+
{ "Parameter": "Position", "Method": "MoveSlide" },
|
290
|
+
{ "Parameter": "Name", "Method": "CreatePresentation" },
|
291
|
+
{ "Parameter": "Name", "Method": "ImportFromHtml" },
|
292
|
+
{ "Parameter": "Name", "Method": "ImportFromPdf" },
|
293
|
+
{ "Parameter": "Name", "Method": "CreatePresentationFromSource" },
|
294
|
+
{ "Parameter": "Name", "Method": "CreatePresentationFromTemplate" },
|
295
|
+
{ "Parameter": "Folder", "Method": "CreatePresentation" },
|
296
|
+
{ "Parameter": "Folder", "Method": "ImportFromHtml" },
|
297
|
+
{ "Parameter": "Folder", "Method": "ImportFromPdf" },
|
298
|
+
{ "Parameter": "Folder", "Method": "CreatePresentationFromSource" },
|
299
|
+
{ "Parameter": "Folder", "Method": "CreatePresentationFromTemplate" },
|
300
|
+
{ "Parameter": "Password", "Method": "CreatePresentation" },
|
301
|
+
{ "Parameter": "Password", "Method": "ImportFromHtml" },
|
302
|
+
{ "Parameter": "Password", "Method": "CreatePresentationFromSource" },
|
303
|
+
{ "Parameter": "Password", "Method": "CreatePresentationFromTemplate" },
|
304
|
+
{ "Parameter": "Data", "Method": "CreatePresentation" },
|
276
305
|
{ "Parameter": "Files" },
|
306
|
+
{ "Parameter": "Request" },
|
277
307
|
{ "Parameter": "WithSlides" },
|
278
308
|
{ "Parameter": "SectionName" },
|
309
|
+
{ "Parameter": "AlignmentType" },
|
310
|
+
{ "Parameter": "AlignToSlide" },
|
279
311
|
{ "Method": "GetDiscUsage" },
|
280
312
|
{ "Method": "GetFilesList" },
|
281
313
|
{ "Method": "GetFileVersions" },
|
@@ -293,32 +325,31 @@
|
|
293
325
|
],
|
294
326
|
"Results": [
|
295
327
|
{ "Code": 200 },
|
296
|
-
{ "Code": 201, "Method": "
|
297
|
-
{ "Code": 201, "Method": "
|
298
|
-
{ "Code": 201, "Method": "
|
299
|
-
{ "Code": 201, "Method": "
|
300
|
-
{ "Code": 201, "Method": "
|
301
|
-
{ "Code": 201, "Method": "
|
302
|
-
{ "Code": 201, "Method": "
|
303
|
-
{ "Code": 201, "Method": "
|
304
|
-
{ "Code": 201, "Method": "
|
305
|
-
{ "Code": 201, "Method": "
|
306
|
-
{ "Code": 201, "Method": "
|
307
|
-
{ "Code": 201, "Method": "
|
308
|
-
{ "Code": 201, "Method": "
|
309
|
-
{ "Code": 201, "Method": "
|
310
|
-
{ "Code": 201, "Method": "
|
311
|
-
{ "Code": 201, "Method": "
|
312
|
-
{ "Code": 201, "Method": "
|
313
|
-
{ "Code": 201, "Method": "
|
314
|
-
{ "Code": 201, "Method": "
|
315
|
-
{ "Code": 201, "Method": "
|
316
|
-
{ "Code": 201, "Method": "
|
317
|
-
{ "Code": 201, "Method": "
|
318
|
-
{ "Code": 201, "Method": "
|
319
|
-
{ "Code": 201, "Method": "
|
320
|
-
{ "Code": 201, "Method": "
|
321
|
-
{ "Code": 201, "Method": "PostSection" },
|
328
|
+
{ "Code": 201, "Method": "CreatePresentation" },
|
329
|
+
{ "Code": 201, "Method": "ImportFromHtml" },
|
330
|
+
{ "Code": 201, "Method": "CreatePresentationFromSource" },
|
331
|
+
{ "Code": 201, "Method": "CreatePresentationFromTemplate" },
|
332
|
+
{ "Code": 201, "Method": "CreateSlide" },
|
333
|
+
{ "Code": 201, "Method": "CopySlide" },
|
334
|
+
{ "Code": 201, "Method": "CopyLayoutSlide" },
|
335
|
+
{ "Code": 201, "Method": "CopyMasterSlide" },
|
336
|
+
{ "Code": 201, "Method": "CreateNotesSlide" },
|
337
|
+
{ "Code": 201, "Method": "CreateParagraph" },
|
338
|
+
{ "Code": 201, "Method": "CreatePortion" },
|
339
|
+
{ "Code": 201, "Method": "CreateShape" },
|
340
|
+
{ "Code": 201, "Method": "CreateSubshapeParagraph" },
|
341
|
+
{ "Code": 201, "Method": "CreateSubshapePortion" },
|
342
|
+
{ "Code": 201, "Method": "CreateSubshape" },
|
343
|
+
{ "Code": 201, "Method": "CreateChartSeries" },
|
344
|
+
{ "Code": 201, "Method": "CreateChartCategory" },
|
345
|
+
{ "Code": 201, "Method": "CreateChartDataPoint" },
|
346
|
+
{ "Code": 201, "Method": "CreateNotesSlideParagraph" },
|
347
|
+
{ "Code": 201, "Method": "CreateNotesSlidePortion" },
|
348
|
+
{ "Code": 201, "Method": "CreateNotesSlideShape" },
|
349
|
+
{ "Code": 201, "Method": "CreateAnimationEffect" },
|
350
|
+
{ "Code": 201, "Method": "CreateAnimationInteractiveSequence" },
|
351
|
+
{ "Code": 201, "Method": "CreateAnimationInteractiveSequenceEffect" },
|
352
|
+
{ "Code": 201, "Method": "CreateSection" },
|
322
353
|
{ "Code": 400, "Invalid": true },
|
323
354
|
{ "Code": 404, "Message" : "AmazonS3 Storage exception: The specified key does not exist.", "Parameter": "Name" },
|
324
355
|
{ "Code": 404, "Message" : "AmazonS3 Storage exception: The specified key does not exist.", "Parameter": "Folder" },
|
@@ -332,14 +363,15 @@
|
|
332
363
|
{ "Code": 404, "Message": "The storage %v was not found or is not associated with the application.", "Parameter": "CloneFromStorage" },
|
333
364
|
{ "Code": 404, "Message": "The storage %v was not found or is not associated with the application.", "Parameter": "TemplateStorage" },
|
334
365
|
{ "Code": 404, "Message": "The storage %v was not found or is not associated with the application.", "Parameter": "SourceStorage" },
|
366
|
+
{ "Code": 404, "Message": "Author with name %v not found", "Parameter": "Author" },
|
335
367
|
{ "Message": "Invalid password.", "Parameter": "Password" },
|
336
368
|
{ "Message": "Invalid password.", "Parameter": "CloneFromPassword" },
|
337
369
|
{ "Message": "Invalid password.", "Parameter": "SourcePassword" },
|
338
370
|
{ "Message": "Invalid password.", "Parameter": "TemplatePassword" },
|
339
371
|
{ "Message": "Invalid password.", "Parameter": "InputPassword" },
|
340
|
-
{ "Message": "Failed to load the presentation", "Parameter": "Password", "Method": "
|
341
|
-
{ "Message": "Failed to load the presentation", "Parameter": "Password", "Method": "
|
342
|
-
{ "Message": "Failed to load the presentation", "Parameter": "Password", "Method": "
|
372
|
+
{ "Message": "Failed to load the presentation", "Parameter": "Password", "Method": "DeleteSlides" },
|
373
|
+
{ "Message": "Failed to load the presentation", "Parameter": "Password", "Method": "CreateSlide" },
|
374
|
+
{ "Message": "Failed to load the presentation", "Parameter": "Password", "Method": "UpdateSlide" },
|
343
375
|
{ "Message": " is out of bounds. Valid index range is between ", "Parameter": "SlideIndex" },
|
344
376
|
{ "Message": " is out of bounds. Valid index range is between ", "Parameter": "Slides" },
|
345
377
|
{ "Message": " is out of bounds. Valid index range is between ", "Parameter": "ShapeIndex" },
|
@@ -370,9 +402,9 @@
|
|
370
402
|
{ "Message": "Invalid version id specified", "Parameter": "VersionId", "Method": "DownloadFile" },
|
371
403
|
{ "Message": "AmazonS3 Storage exception", "Parameter": "VersionId", "Method": "ObjectExists" },
|
372
404
|
{ "Message": "The HTTP resource that matches the request URI", "Parameter": "Path" },
|
373
|
-
{ "Message": "Specified cast is not valid", "Parameter": "Path", "Method": "
|
405
|
+
{ "Message": "Specified cast is not valid", "Parameter": "Path", "Method": "GetShapes" },
|
374
406
|
{ "Message": "Specified cast is not valid", "Parameter": "Path", "Method": "GetNotesSlideShapes" },
|
375
|
-
{ "Message": "Specified cast is not valid", "Parameter": "Path", "Method": "
|
407
|
+
{ "Message": "Specified cast is not valid", "Parameter": "Path", "Method": "DeleteShapes" },
|
376
408
|
{ "Message": "Specified cast is not valid", "Parameter": "Path", "Method": "DeleteNotesSlideShapes" },
|
377
409
|
{ "Message" : "AmazonS3 Storage exception: The specified key does not exist.", "Parameter": "Path", "Method": "DownloadFile" },
|
378
410
|
{ "Code": 404, "Message": "AmazonS3 Storage exception: The specified key does not exist.", "Parameter": "SrcPath" },
|
@@ -381,43 +413,74 @@
|
|
381
413
|
{ "Message": " is out of bounds. Valid index range is between ", "Parameter": "From" },
|
382
414
|
{ "Message": " is out of bounds. Valid index range is between ", "Parameter": "To" },
|
383
415
|
{ "Message": " is not supported", "Parameter": "Format" },
|
384
|
-
{ "Message": " is not
|
385
|
-
{ "Message": " is not valid", "Parameter": "Format", "Method": "
|
386
|
-
{ "Message": " is not valid", "Parameter": "Format", "Method": "
|
387
|
-
{ "Message": " is not valid", "Parameter": "Format", "Method": "
|
388
|
-
{ "Message": " is not valid", "Parameter": "Format", "Method": "
|
389
|
-
{ "Message": " is not valid", "Parameter": "Format", "Method": "
|
390
|
-
{ "Message": "
|
391
|
-
{ "Message": "
|
392
|
-
{ "Message": "
|
393
|
-
{ "Message": "
|
394
|
-
{ "Message": "
|
395
|
-
{ "Message": "
|
396
|
-
{ "Message": "
|
397
|
-
{ "Message": "
|
398
|
-
{ "Message": "
|
399
|
-
{ "Message": "
|
400
|
-
{ "Message": "
|
401
|
-
{ "Message": "
|
402
|
-
{ "Message": "
|
403
|
-
{ "Message": "
|
404
|
-
{ "Message": "
|
405
|
-
{ "Message": "
|
406
|
-
{ "Message": "
|
407
|
-
{ "Message": "
|
408
|
-
{ "Message": "
|
409
|
-
{ "Message": "does not support the API version", "Parameter": "Format", "Method": "
|
410
|
-
{ "Message": "does not support the API version", "Parameter": "Format", "Method": "
|
411
|
-
{ "Message": "does not support the API version", "Parameter": "Format", "Method": "
|
412
|
-
{ "Message": "does not support the API version", "Parameter": "Format", "Method": "
|
413
|
-
{ "Message": "does not support the API version", "Parameter": "Format", "Method": "
|
416
|
+
{ "Message": " is not supported", "Parameter": "OutPath" },
|
417
|
+
{ "Message": " is not valid", "Parameter": "Format", "Method": "DownloadImage", "Language": "NodeJS" },
|
418
|
+
{ "Message": " is not valid", "Parameter": "Format", "Method": "DownloadImage", "Language": "Go" },
|
419
|
+
{ "Message": " is not valid", "Parameter": "Format", "Method": "DownloadImage", "Language": "Python" },
|
420
|
+
{ "Message": " is not valid", "Parameter": "Format", "Method": "DownloadImage", "Language": "Perl" },
|
421
|
+
{ "Message": " is not valid", "Parameter": "Format", "Method": "DownloadImage", "Language": "Swift" },
|
422
|
+
{ "Message": " is not valid", "Parameter": "Format", "Method": "DownloadImage", "Language": "CPP" },
|
423
|
+
{ "Message": " is not valid", "Parameter": "Format", "Method": "DownloadImageOnline", "Language": "NodeJS" },
|
424
|
+
{ "Message": " is not valid", "Parameter": "Format", "Method": "DownloadImageOnline", "Language": "Go" },
|
425
|
+
{ "Message": " is not valid", "Parameter": "Format", "Method": "DownloadImageOnline", "Language": "Python" },
|
426
|
+
{ "Message": " is not valid", "Parameter": "Format", "Method": "DownloadImageOnline", "Language": "Perl" },
|
427
|
+
{ "Message": " is not valid", "Parameter": "Format", "Method": "DownloadImageOnline", "Language": "Swift" },
|
428
|
+
{ "Message": " is not valid", "Parameter": "Format", "Method": "DownloadImageOnline", "Language": "CPP" },
|
429
|
+
{ "Message": " is not valid", "Parameter": "Format", "Method": "DownloadImages", "Language": "NodeJS" },
|
430
|
+
{ "Message": " is not valid", "Parameter": "Format", "Method": "DownloadImages", "Language": "Go" },
|
431
|
+
{ "Message": " is not valid", "Parameter": "Format", "Method": "DownloadImages", "Language": "Python" },
|
432
|
+
{ "Message": " is not valid", "Parameter": "Format", "Method": "DownloadImages", "Language": "Perl" },
|
433
|
+
{ "Message": " is not valid", "Parameter": "Format", "Method": "DownloadImages", "Language": "Swift" },
|
434
|
+
{ "Message": " is not valid", "Parameter": "Format", "Method": "DownloadImages", "Language": "CPP" },
|
435
|
+
{ "Message": " is not valid", "Parameter": "Format", "Method": "DownloadImagesOnline", "Language": "NodeJS" },
|
436
|
+
{ "Message": " is not valid", "Parameter": "Format", "Method": "DownloadImagesOnline", "Language": "Go" },
|
437
|
+
{ "Message": " is not valid", "Parameter": "Format", "Method": "DownloadImagesOnline", "Language": "Python" },
|
438
|
+
{ "Message": " is not valid", "Parameter": "Format", "Method": "DownloadImagesOnline", "Language": "Perl" },
|
439
|
+
{ "Message": " is not valid", "Parameter": "Format", "Method": "DownloadImagesOnline", "Language": "Swift" },
|
440
|
+
{ "Message": " is not valid", "Parameter": "Format", "Method": "DownloadImagesOnline", "Language": "CPP" },
|
441
|
+
{ "Message": "does not support the API version", "Parameter": "Format", "Method": "DownloadShape", "Language": "NodeJS" },
|
442
|
+
{ "Message": "does not support the API version", "Parameter": "Format", "Method": "DownloadSubshape", "Language": "NodeJS" },
|
443
|
+
{ "Message": "does not support the API version", "Parameter": "Format", "Method": "SaveShape", "Language": "NodeJS" },
|
444
|
+
{ "Message": "does not support the API version", "Parameter": "Format", "Method": "SaveSubshape", "Language": "NodeJS" },
|
445
|
+
{ "Message": "does not support the API version", "Parameter": "Format", "Method": "DownloadShapeOnline", "Language": "NodeJS" },
|
446
|
+
{ "Message": "does not support the API version", "Parameter": "Format", "Method": "SaveShapeOnline", "Language": "NodeJS" },
|
447
|
+
{ "Message": "does not support the API version", "Parameter": "Format", "Method": "DownloadShape", "Language": "Python" },
|
448
|
+
{ "Message": "does not support the API version", "Parameter": "Format", "Method": "DownloadSubshape", "Language": "Python" },
|
449
|
+
{ "Message": "does not support the API version", "Parameter": "Format", "Method": "SaveShape", "Language": "Python" },
|
450
|
+
{ "Message": "does not support the API version", "Parameter": "Format", "Method": "SaveSubshape", "Language": "Python" },
|
451
|
+
{ "Message": "does not support the API version", "Parameter": "Format", "Method": "DownloadShapeOnline", "Language": "Python" },
|
452
|
+
{ "Message": "does not support the API version", "Parameter": "Format", "Method": "SaveShapeOnline", "Language": "Python" },
|
453
|
+
{ "Message": "does not support the API version", "Parameter": "Format", "Method": "DownloadShape", "Language": "Go" },
|
454
|
+
{ "Message": "does not support the API version", "Parameter": "Format", "Method": "DownloadSubshape", "Language": "Go" },
|
455
|
+
{ "Message": "does not support the API version", "Parameter": "Format", "Method": "SaveShape", "Language": "Go" },
|
456
|
+
{ "Message": "does not support the API version", "Parameter": "Format", "Method": "SaveSubshape", "Language": "Go" },
|
457
|
+
{ "Message": "does not support the API version", "Parameter": "Format", "Method": "DownloadShapeOnline", "Language": "Go" },
|
458
|
+
{ "Message": "does not support the API version", "Parameter": "Format", "Method": "SaveShapeOnline", "Language": "Go" },
|
459
|
+
{ "Message": "does not support the API version", "Parameter": "Format", "Method": "DownloadShape", "Language": "Perl" },
|
460
|
+
{ "Message": "does not support the API version", "Parameter": "Format", "Method": "DownloadSubshape", "Language": "Perl" },
|
461
|
+
{ "Message": "does not support the API version", "Parameter": "Format", "Method": "SaveShape", "Language": "Perl" },
|
462
|
+
{ "Message": "does not support the API version", "Parameter": "Format", "Method": "SaveSubshape", "Language": "Perl" },
|
463
|
+
{ "Message": "does not support the API version", "Parameter": "Format", "Method": "DownloadShapeOnline", "Language": "Perl" },
|
464
|
+
{ "Message": "does not support the API version", "Parameter": "Format", "Method": "SaveShapeOnline", "Language": "Perl" },
|
465
|
+
{ "Message": "does not support the API version", "Parameter": "Format", "Method": "DownloadShape", "Language": "Swift" },
|
466
|
+
{ "Message": "does not support the API version", "Parameter": "Format", "Method": "DownloadSubshape", "Language": "Swift" },
|
467
|
+
{ "Message": "does not support the API version", "Parameter": "Format", "Method": "SaveShape", "Language": "Swift" },
|
468
|
+
{ "Message": "does not support the API version", "Parameter": "Format", "Method": "SaveSubshape", "Language": "Swift" },
|
469
|
+
{ "Message": "does not support the API version", "Parameter": "Format", "Method": "DownloadShapeOnline", "Language": "Swift" },
|
470
|
+
{ "Message": "does not support the API version", "Parameter": "Format", "Method": "SaveShapeOnline", "Language": "Swift" },
|
471
|
+
{ "Message": "does not support the API version", "Parameter": "Format", "Method": "DownloadShape", "Language": "CPP" },
|
472
|
+
{ "Message": "does not support the API version", "Parameter": "Format", "Method": "DownloadSubshape", "Language": "CPP" },
|
473
|
+
{ "Message": "does not support the API version", "Parameter": "Format", "Method": "SaveShape", "Language": "CPP" },
|
474
|
+
{ "Message": "does not support the API version", "Parameter": "Format", "Method": "SaveSubshape", "Language": "CPP" },
|
475
|
+
{ "Message": "does not support the API version", "Parameter": "Format", "Method": "DownloadShapeOnline", "Language": "CPP" },
|
476
|
+
{ "Message": "does not support the API version", "Parameter": "Format", "Method": "SaveShapeOnline", "Language": "CPP" },
|
414
477
|
{ "Message": "Color must be in format #FF000000", "Parameter": "Color" },
|
415
478
|
{ "Code": 404, "Message": "Property %v does not exist.", "Parameter": "PropertyName" },
|
416
479
|
{ "Message": "Error parsing XML template data", "Parameter": "Data" },
|
417
|
-
{ "Message": "Can't read MSCDFileSystem.", "Parameter": "Data", "Language": "Python", "Method": "
|
480
|
+
{ "Message": "Can't read MSCDFileSystem.", "Parameter": "Data", "Language": "Python", "Method": "CreatePresentation" },
|
418
481
|
{ "Message": " required parameter", "Parameter": "DTO" },
|
419
|
-
{ "Message": "DTO expected", "Parameter": "DTO", "Method": "
|
420
|
-
{ "Message": "DTO expected", "Parameter": "DTO", "Method": "
|
482
|
+
{ "Message": "DTO expected", "Parameter": "DTO", "Method": "CreateShape" },
|
483
|
+
{ "Message": "DTO expected", "Parameter": "DTO", "Method": "CreateSubshape" },
|
421
484
|
{ "Message": " required parameter", "Parameter": "SlideDTO" },
|
422
485
|
{ "Message": " required parameter", "Parameter": "Background" },
|
423
486
|
{ "Message": " required parameter", "Parameter": "Pipeline" },
|
@@ -433,10 +496,19 @@
|
|
433
496
|
{ "Message": " required parameter", "Parameter": "Sections" },
|
434
497
|
{ "Message": " required parameter", "Parameter": "Document" },
|
435
498
|
{ "Message": " required parameter", "Parameter": "File" },
|
499
|
+
{ "Message": "Failed to load the presentation", "Parameter": "Request", "Method": "MergeOnline" },
|
500
|
+
{ "Message": "Failed to load the presentation", "Parameter": "Request", "Method": "MergeAndSaveOnline" },
|
501
|
+
{ "Message": "Image data is not found", "Parameter": "Image" },
|
502
|
+
{ "Message": "Pdf expected", "Parameter": "Pdf" },
|
436
503
|
{ "Message": " is out of bounds. Valid index range is between ", "Parameter": "Sections", "Method": "DeleteSections" },
|
437
504
|
{ "Message": "Layout slide DTO must be not null and contain", "Parameter": "SlideDTO", "Language": "Swift" },
|
438
505
|
{ "Message": "Object reference not set to an instance of an object.", "Parameter": "Bounds" },
|
439
506
|
{ "Code": 409, "Message": " is not empty.", "Parameter": "Recursive" },
|
507
|
+
{ "Message": "Error processing presentation ", "Code": 400, "Parameter": "Files" },
|
508
|
+
{ "Message": "Presentation file is not found", "Parameter": "Image", "Method": "CreateImageWatermarkOnline", "Language": "PHP" },
|
509
|
+
{ "Message": "Presentation file is not found", "Parameter": "Image", "Method": "CreateImageWatermarkOnline", "Language": "Python" },
|
510
|
+
{ "Message": "Presentation file is not found", "Parameter": "Image", "Method": "CreateImageWatermarkOnline", "Language": "Ruby" },
|
511
|
+
{ "Message": "Presentation file is not found", "Parameter": "Image", "Method": "CreateImageWatermarkOnline", "Language": "CPP" },
|
440
512
|
{ "Message": "An error has occurred.", "Code": 500, "Parameter": "Options" }
|
441
513
|
]
|
442
514
|
}
|