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.
@@ -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
- requestParam = AsposeSlidesCloud::PostSlidesPipelineRequest.new
29
- requestParam.pipeline = AsposeSlidesCloud::Pipeline.new
30
- requestParam.pipeline.input = AsposeSlidesCloud::Input.new
31
- requestParam.pipeline.input.template_data = AsposeSlidesCloud::RequestInputFile.new
32
- requestParam.pipeline.input.template_data.type = "Request"
33
- requestParam.pipeline.input.template_data.index = 0
34
- requestParam.pipeline.input.template = AsposeSlidesCloud::RequestInputFile.new
35
- requestParam.pipeline.input.template.type = "Request"
36
- requestParam.pipeline.input.template.index = 1
37
- requestParam.pipeline.tasks = []
38
- requestParam.pipeline.tasks.push(AsposeSlidesCloud::Save.new)
39
- requestParam.pipeline.tasks[0].type = "Save"
40
- requestParam.pipeline.tasks[0].format = "pptx"
41
- requestParam.pipeline.tasks[0].output = AsposeSlidesCloud::OutputFile.new
42
- requestParam.pipeline.tasks[0].output.type = "Response"
43
- requestParam.files = []
44
- requestParam.files.push(File.binread(File.join(AsposeSlidesCloud::SpecUtils::TEST_DATA_PATH, "TemplatingCVDataWithBase64.xml")))
45
- requestParam.files.push(File.binread(File.join(AsposeSlidesCloud::SpecUtils::TEST_DATA_PATH, "TemplateCV.pptx")))
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
- requestParam = AsposeSlidesCloud::GetSlideShapeRequest.new
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
- #requestParam = AsposeSlidesCloud::PostSlideSaveAsRequest.new
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
- requestParam = AsposeSlidesCloud::CopyFileRequest.new
101
- requestParam.src_path = "TempTests/" + fileName
102
- requestParam.dest_path = folderName + "/" + fileName
103
- AsposeSlidesCloud::SpecUtils.api.copy_file(requestParam)
104
-
105
- postRequest = AsposeSlidesCloud::PostAddNewShapeRequest.new
106
- postRequest.name = fileName
107
- postRequest.folder = folderName
108
- postRequest.password = password
109
- postRequest.slide_index = 1
110
- postRequest.dto = AsposeSlidesCloud::Chart.new
111
- postRequest.dto.chart_type = "Line"
112
- postRequest.dto.width = 400.0
113
- postRequest.dto.height = 300.0
114
- postRequest.dto.title = AsposeSlidesCloud::ChartTitle.new
115
- postRequest.dto.title.has_title = true
116
- postRequest.dto.title.text = "MyTitle"
117
- postRequest.dto.series = []
118
- postRequest.dto.series.push(AsposeSlidesCloud::OneValueSeries.new)
119
- postRequest.dto.series[0].type = "ClusteredColumn"
120
- postRequest.dto.series[0].data_point_type = "OneValue"
121
- postRequest.dto.series[0].name = "Series1"
122
- postRequest.dto.series[0].data_points = []
123
- postRequest.dto.series[0].data_points.push(AsposeSlidesCloud::OneValueChartDataPoint.new)
124
- postRequest.dto.series[0].data_points[0].value = 40.0
125
- postRequest.dto.series[0].data_points.push(AsposeSlidesCloud::OneValueChartDataPoint.new)
126
- postRequest.dto.series[0].data_points[1].value = 50.0
127
- postRequest.dto.axes = AsposeSlidesCloud::Axes.new
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
- putRequest = AsposeSlidesCloud::PutSlideShapeInfoRequest.new
146
- putRequest.name = fileName
147
- putRequest.folder = folderName
148
- putRequest.password = password
149
- putRequest.slide_index = 1
150
- putRequest.shape_index = 4
151
- putRequest.dto = AsposeSlidesCloud::Chart.new
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
- putRequest.dto.axes.horizontal_axis = AsposeSlidesCloud::Axis.new
162
- putRequest.dto.axes.horizontal_axis.max_value = max2
163
- AsposeSlidesCloud::SpecUtils.api.put_slide_shape_info(putRequest)
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.get_slide_shape(getRequest)
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.get_slides_api_info_with_http_info
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.get_slides_api_info_with_http_info
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.get_slides_api_info_with_http_info
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.get_slides_api_info_with_http_info
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.get_slides_api_info_with_http_info
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(download_request)
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
- upload_request = AsposeSlidesCloud::UploadFileRequest.new
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
- upload_request = AsposeSlidesCloud::UploadFileRequest.new
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
- copy_request = AsposeSlidesCloud::CopyFileRequest.new
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
- delete_request = AsposeSlidesCloud::DeleteFileRequest.new
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
- return File.binread(File.join(TEST_DATA_PATH, "test.pptx"))
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?("%v")
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": "DeleteSlidesCleanSlidesList" },
5
- { "Action": "Put", "File": "test-unprotected.pptx", "Method": "PutSlidesSlide" },
6
- { "Action": "Delete", "File": "test.pptx", "Method": "PostSlidesDocument" },
7
- { "Action": "Delete", "File": "test.pptx", "Method": "PostSlidesDocumentFromHtml" },
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": "PostSlidesDocument" },
12
- { "Action": "Delete", "File": "invalidchangedtest.pptx", "Method": "PostSlidesDocument" },
13
- { "Action": "Delete", "Folder": "TempSlidesSDKinvalid", "File": "changedtest.pptx", "Method": "PostSlidesDocument" },
14
- { "Action": "Delete", "File": "changedtest.pptx", "Method": "PostSlidesDocumentFromSource" },
15
- { "Action": "Delete", "File": "invalidchangedtest.pptx", "Method": "PostSlidesDocumentFromSource" },
16
- { "Action": "Delete", "Folder": "TempSlidesSDKinvalid", "File": "changedtest.pptx", "Method": "PostSlidesDocumentFromSource" },
17
- { "Action": "Delete", "File": "changedtest.pptx", "Method": "PostSlidesDocumentFromTemplate" },
18
- { "Action": "Delete", "File": "invalidchangedtest.pptx", "Method": "PostSlidesDocumentFromTemplate" },
19
- { "Action": "Delete", "Folder": "TempSlidesSDKinvalid", "File": "changedtest.pptx", "Method": "PostSlidesDocumentFromTemplate" },
20
- { "Action": "Delete", "File": "changedtest.pptx", "Method": "PutNewPresentation" },
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": "PutSlidesSlide" },
30
- { "Value": "test-unprotected.pptx", "Parameter": "Name", "Method": "PostSlidesAdd" },
31
- { "Value": "test-unprotected.pptx", "Parameter": "Name", "Method": "DeleteSlidesCleanSlidesList" },
32
- { "Value": "changedtest.pptx", "Parameter": "Name", "Method": "PutNewPresentation" },
33
- { "Value": "changedtest.pptx", "Parameter": "Name", "Method": "PostSlidesDocumentFromSource" },
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": "PostSlidesDocument" },
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": "PutSlidesSlide" },
50
- { "Value": null, "Parameter": "Password", "Method": "PostSlidesAdd" },
51
- { "Value": null, "Parameter": "Password", "Method": "DeleteSlidesCleanSlidesList" },
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": "PostSection" },
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": "PostChartSeries" },
67
- { "Value": 3, "Parameter": "SlideIndex", "Method": "PutChartSeries" },
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": "PostChartCategory" },
70
- { "Value": 3, "Parameter": "SlideIndex", "Method": "PutChartCategory" },
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": "PostChartDataPoint" },
73
- { "Value": 3, "Parameter": "SlideIndex", "Method": "PutChartDataPoint" },
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": "PostChartDataPoint" },
76
- { "Value": 2, "Parameter": "ShapeIndex", "Method": "PutChartDataPoint" },
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": "GetSlideSubshape" },
84
- { "Value": 1, "Parameter": "ShapeIndex", "Method": "GetSlideSubshapes" },
85
- { "Value": 1, "Parameter": "ShapeIndex", "Method": "GetSlideSubshapeParagraph" },
86
- { "Value": 1, "Parameter": "ShapeIndex", "Method": "GetSlideSubshapeParagraphs" },
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": "PostAddNewSubshape" },
90
- { "Value": 1, "Parameter": "ShapeIndex", "Method": "PostAddNewSubshapeParagraph" },
91
- { "Value": 1, "Parameter": "ShapeIndex", "Method": "PostAddNewSubshapePortion" },
92
- { "Value": 1, "Parameter": "ShapeIndex", "Method": "PostSubshapeSaveAs" },
93
- { "Value": 1, "Parameter": "ShapeIndex", "Method": "PutSetSubshapeParagraphPortionProperties" },
94
- { "Value": 1, "Parameter": "ShapeIndex", "Method": "PutSetSubshapeParagraphProperties" },
95
- { "Value": 1, "Parameter": "ShapeIndex", "Method": "PutSlideSubshapeInfo" },
96
- { "Value": 1, "Parameter": "ShapeIndex", "Method": "PutSubshapeSaveAs" },
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": {}, "InvalidValue": null, "Type": "ViewProperties", "Parameter": "DTO", "Method": "PutSlidesViewProperties" },
156
- { "Value": { "Text": "testPortion" }, "InvalidValue": null, "Type": "Portion", "Parameter": "DTO", "Method": "PostAddNewPortion" },
157
- { "Value": { "Text": "testPortion" }, "InvalidValue": null, "Type": "Portion", "Parameter": "DTO", "Method": "PostAddNewSubshapePortion" },
158
- { "Value": { "Text": "testPortion" }, "InvalidValue": null, "Type": "Portion", "Parameter": "DTO", "Method": "PostNotesSlideAddNewPortion" },
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": "PutSlidesSlide" },
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": "PutSections" },
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": "GetNotesSlideWithFormat", "Language": "NET" },
172
- { "InvalidValue": "gif", "Parameter": "Format", "Method": "PostGetNotesSlideWithFormat", "Language": "NET" },
173
- { "InvalidValue": "gif", "Parameter": "Format", "Method": "GetSlidesImageWithFormat", "Language": "NET" },
174
- { "Value": "png", "Parameter": "Format", "Method": "GetNotesSlideWithFormat" },
175
- { "Value": "png", "Parameter": "Format", "Method": "PostGetNotesSlideWithFormat" },
176
- { "Value": "png", "Parameter": "Format", "Method": "GetShapeWithFormat" },
177
- { "Value": "png", "Parameter": "Format", "Method": "PostShapeSaveAs" },
178
- { "Value": "png", "Parameter": "Format", "Method": "PutShapeSaveAs" },
179
- { "Value": "png", "Parameter": "Format", "Method": "PostSubshapeSaveAs" },
180
- { "Value": "png", "Parameter": "Format", "Method": "PutSubshapeSaveAs" },
181
- { "Value": "png", "Parameter": "Format", "Method": "GetNotesSlideShapeWithFormat" },
182
- { "Value": "png", "Parameter": "Format", "Method": "PostNotesSlideShapeSaveAs" },
183
- { "Value": "png", "Parameter": "Format", "Method": "PutNotesSlideShapeSaveAs" },
184
- { "Value": "png", "Parameter": "Format", "Method": "GetSlidesImageWithFormat" },
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
- { "Value": null, "Parameter": "VersionId" },
203
- { "Value": null, "InvalidValue": null, "Parameter": "Files" }
224
+ { "InvalidValue": null, "Parameter": "Files" },
225
+ { "Value": null, "Parameter": "VersionId" }
204
226
  ],
205
227
  "OKToReturnNull": [
206
- { "Method": "PostSlidesPipeline" }
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": "Format", "Method": "PutSlidesSlide" },
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": "PostSlidesSplit" },
244
- { "Parameter": "Dto", "Method": "PostAddNotesSlide" },
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": "PostSlidesReorderPosition" },
258
- { "Parameter": "Name", "Method": "PostSlidesDocument" },
259
- { "Parameter": "Name", "Method": "PostSlidesDocumentFromHtml" },
260
- { "Parameter": "Name", "Method": "PostSlidesDocumentFromSource" },
261
- { "Parameter": "Name", "Method": "PostSlidesDocumentFromTemplate" },
262
- { "Parameter": "Name", "Method": "PutNewPresentation" },
263
- { "Parameter": "Name", "Method": "PutSlidesDocumentFromHtml" },
264
- { "Parameter": "Folder", "Method": "PostSlidesDocument" },
265
- { "Parameter": "Folder", "Method": "PostSlidesDocumentFromHtml" },
266
- { "Parameter": "Folder", "Method": "PostSlidesDocumentFromSource" },
267
- { "Parameter": "Folder", "Method": "PostSlidesDocumentFromTemplate" },
268
- { "Parameter": "Folder", "Method": "PutNewPresentation" },
269
- { "Parameter": "Folder", "Method": "PutSlidesDocumentFromHtml" },
270
- { "Parameter": "Password", "Method": "PostSlidesDocument" },
271
- { "Parameter": "Password", "Method": "PostSlidesDocumentFromHtml" },
272
- { "Parameter": "Password", "Method": "PostSlidesDocumentFromSource" },
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": "PostSlidesDocument" },
297
- { "Code": 201, "Method": "PostSlidesDocumentFromHtml" },
298
- { "Code": 201, "Method": "PostSlidesDocumentFromSource" },
299
- { "Code": 201, "Method": "PostSlidesDocumentFromTemplate" },
300
- { "Code": 201, "Method": "PutNewPresentation" },
301
- { "Code": 201, "Method": "PostSlidesAdd" },
302
- { "Code": 201, "Method": "PostSlidesCopy" },
303
- { "Code": 201, "Method": "PostCopyLayoutSlideFromSourcePresentation" },
304
- { "Code": 201, "Method": "PostCopyMasterSlideFromSourcePresentation" },
305
- { "Code": 201, "Method": "PostAddNotesSlide" },
306
- { "Code": 201, "Method": "PostAddNewParagraph" },
307
- { "Code": 201, "Method": "PostAddNewPortion" },
308
- { "Code": 201, "Method": "PostAddNewShape" },
309
- { "Code": 201, "Method": "PostAddNewSubshapeParagraph" },
310
- { "Code": 201, "Method": "PostAddNewSubshapePortion" },
311
- { "Code": 201, "Method": "PostAddNewSubshape" },
312
- { "Code": 201, "Method": "PostChartSeries" },
313
- { "Code": 201, "Method": "PostChartCategory" },
314
- { "Code": 201, "Method": "PostChartDataPoint" },
315
- { "Code": 201, "Method": "PostNotesSlideAddNewParagraph" },
316
- { "Code": 201, "Method": "PostNotesSlideAddNewPortion" },
317
- { "Code": 201, "Method": "PostNotesSlideAddNewShape" },
318
- { "Code": 201, "Method": "PostSlideAnimationEffect" },
319
- { "Code": 201, "Method": "PostSlideAnimationInteractiveSequence" },
320
- { "Code": 201, "Method": "PostSlideAnimationInteractiveSequenceEffect" },
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": "DeleteSlidesCleanSlidesList" },
341
- { "Message": "Failed to load the presentation", "Parameter": "Password", "Method": "PostSlidesAdd" },
342
- { "Message": "Failed to load the presentation", "Parameter": "Password", "Method": "PutSlidesSlide" },
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": "GetSlideShapes" },
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": "DeleteSlideShapes" },
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 valid", "Parameter": "Format", "Method": "GetSlidesImageWithFormat", "Language": "NodeJS" },
385
- { "Message": " is not valid", "Parameter": "Format", "Method": "GetSlidesImageWithFormat", "Language": "Go" },
386
- { "Message": " is not valid", "Parameter": "Format", "Method": "GetSlidesImageWithFormat", "Language": "Python" },
387
- { "Message": " is not valid", "Parameter": "Format", "Method": "GetSlidesImageWithFormat", "Language": "Perl" },
388
- { "Message": " is not valid", "Parameter": "Format", "Method": "GetSlidesImageWithFormat", "Language": "Swift" },
389
- { "Message": " is not valid", "Parameter": "Format", "Method": "GetSlidesImageWithFormat", "Language": "CPP" },
390
- { "Message": "does not support the API version", "Parameter": "Format", "Method": "PostShapeSaveAs", "Language": "NodeJS" },
391
- { "Message": "does not support the API version", "Parameter": "Format", "Method": "PostSubshapeSaveAs", "Language": "NodeJS" },
392
- { "Message": "does not support the API version", "Parameter": "Format", "Method": "PutShapeSaveAs", "Language": "NodeJS" },
393
- { "Message": "does not support the API version", "Parameter": "Format", "Method": "PutSubshapeSaveAs", "Language": "NodeJS" },
394
- { "Message": "does not support the API version", "Parameter": "Format", "Method": "PostShapeSaveAs", "Language": "Python" },
395
- { "Message": "does not support the API version", "Parameter": "Format", "Method": "PostSubshapeSaveAs", "Language": "Python" },
396
- { "Message": "does not support the API version", "Parameter": "Format", "Method": "PutShapeSaveAs", "Language": "Python" },
397
- { "Message": "does not support the API version", "Parameter": "Format", "Method": "PutSubshapeSaveAs", "Language": "Python" },
398
- { "Message": "does not support the API version", "Parameter": "Format", "Method": "PostShapeSaveAs", "Language": "Go" },
399
- { "Message": "does not support the API version", "Parameter": "Format", "Method": "PostSubshapeSaveAs", "Language": "Go" },
400
- { "Message": "does not support the API version", "Parameter": "Format", "Method": "PutShapeSaveAs", "Language": "Go" },
401
- { "Message": "does not support the API version", "Parameter": "Format", "Method": "PutSubshapeSaveAs", "Language": "Go" },
402
- { "Message": "does not support the API version", "Parameter": "Format", "Method": "PostShapeSaveAs", "Language": "Perl" },
403
- { "Message": "does not support the API version", "Parameter": "Format", "Method": "PostSubshapeSaveAs", "Language": "Perl" },
404
- { "Message": "does not support the API version", "Parameter": "Format", "Method": "PutShapeSaveAs", "Language": "Perl" },
405
- { "Message": "does not support the API version", "Parameter": "Format", "Method": "PutSubshapeSaveAs", "Language": "Perl" },
406
- { "Message": "does not support the API version", "Parameter": "Format", "Method": "PostShapeSaveAs", "Language": "Swift" },
407
- { "Message": "does not support the API version", "Parameter": "Format", "Method": "PostSubshapeSaveAs", "Language": "Swift" },
408
- { "Message": "does not support the API version", "Parameter": "Format", "Method": "PutShapeSaveAs", "Language": "Swift" },
409
- { "Message": "does not support the API version", "Parameter": "Format", "Method": "PutSubshapeSaveAs", "Language": "Swift" },
410
- { "Message": "does not support the API version", "Parameter": "Format", "Method": "PostShapeSaveAs", "Language": "CPP" },
411
- { "Message": "does not support the API version", "Parameter": "Format", "Method": "PostSubshapeSaveAs", "Language": "CPP" },
412
- { "Message": "does not support the API version", "Parameter": "Format", "Method": "PutShapeSaveAs", "Language": "CPP" },
413
- { "Message": "does not support the API version", "Parameter": "Format", "Method": "PutSubshapeSaveAs", "Language": "CPP" },
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": "PostSlidesDocument" },
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": "PostAddNewShape" },
420
- { "Message": "DTO expected", "Parameter": "DTO", "Method": "PostAddNewSubshape" },
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
  }