aspose_words_cloud 20.5.0 → 20.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aspose_words_cloud.rb +2 -1
- data/lib/aspose_words_cloud/api/words_api.rb +877 -92
- data/lib/aspose_words_cloud/models/drawing_object_insert.rb +345 -0
- data/lib/aspose_words_cloud/models/{styles.rb → drawing_object_update.rb} +137 -19
- data/lib/aspose_words_cloud/models/ooxml_save_options_data.rb +27 -1
- data/lib/aspose_words_cloud/models/requests/ApplyStyleToDocumentElementRequest.rb +2 -2
- data/lib/aspose_words_cloud/models/requests/DeleteAllParagraphTabStopsWithoutNodePathRequest.rb +69 -0
- data/lib/aspose_words_cloud/models/requests/DeleteParagraphListFormatWithoutNodePathRequest.rb +77 -0
- data/lib/aspose_words_cloud/models/requests/DeleteParagraphTabStopRequest.rb +5 -5
- data/lib/aspose_words_cloud/models/requests/DeleteParagraphTabStopWithoutNodePathRequest.rb +73 -0
- data/lib/aspose_words_cloud/models/requests/GetParagraphTabStopsWithoutNodePathRequest.rb +65 -0
- data/lib/aspose_words_cloud/models/requests/GetStyleFromDocumentElementRequest.rb +2 -2
- data/lib/aspose_words_cloud/models/requests/InsertDrawingObjectRequest.rb +2 -2
- data/lib/aspose_words_cloud/models/requests/InsertDrawingObjectWithoutNodePathRequest.rb +2 -2
- data/lib/aspose_words_cloud/models/requests/InsertOrUpdateParagraphTabStopRequest.rb +5 -5
- data/lib/aspose_words_cloud/models/requests/InsertOrUpdateParagraphTabStopWithoutNodePathRequest.rb +73 -0
- data/lib/aspose_words_cloud/models/requests/InsertParagraphWithoutNodePathRequest.rb +81 -0
- data/lib/aspose_words_cloud/models/requests/UpdateParagraphFormatWithoutNodePathRequest.rb +81 -0
- data/lib/aspose_words_cloud/models/requests/UpdateParagraphListFormatWithoutNodePathRequest.rb +81 -0
- data/lib/aspose_words_cloud/models/styles_response.rb +5 -2
- data/lib/aspose_words_cloud/version.rb +1 -1
- metadata +12 -3
@@ -34,7 +34,7 @@ module AsposeWordsCloud
|
|
34
34
|
|
35
35
|
# The document name.
|
36
36
|
attr_accessor :name
|
37
|
-
# Drawing object parameters
|
37
|
+
# Drawing object parameters.
|
38
38
|
attr_accessor :drawing_object
|
39
39
|
# File with image
|
40
40
|
attr_accessor :image_file
|
@@ -56,7 +56,7 @@ module AsposeWordsCloud
|
|
56
56
|
#
|
57
57
|
# Initializes a new instance.
|
58
58
|
# @param name The document name.
|
59
|
-
# @param drawing_object Drawing object parameters
|
59
|
+
# @param drawing_object Drawing object parameters.
|
60
60
|
# @param image_file File with image
|
61
61
|
# @param folder Original document folder.
|
62
62
|
# @param storage Original document storage.
|
@@ -34,10 +34,10 @@ module AsposeWordsCloud
|
|
34
34
|
|
35
35
|
# The document name.
|
36
36
|
attr_accessor :name
|
37
|
-
# Path to the node which contains paragraph.
|
38
|
-
attr_accessor :node_path
|
39
37
|
# Paragraph tab stop.
|
40
38
|
attr_accessor :dto
|
39
|
+
# Path to the node which contains paragraph.
|
40
|
+
attr_accessor :node_path
|
41
41
|
# Object index.
|
42
42
|
attr_accessor :index
|
43
43
|
# Original document folder.
|
@@ -54,18 +54,18 @@ module AsposeWordsCloud
|
|
54
54
|
#
|
55
55
|
# Initializes a new instance.
|
56
56
|
# @param name The document name.
|
57
|
-
# @param node_path Path to the node which contains paragraph.
|
58
57
|
# @param dto Paragraph tab stop.
|
58
|
+
# @param node_path Path to the node which contains paragraph.
|
59
59
|
# @param index Object index.
|
60
60
|
# @param folder Original document folder.
|
61
61
|
# @param storage Original document storage.
|
62
62
|
# @param load_encoding Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
|
63
63
|
# @param password Password for opening an encrypted document.
|
64
64
|
# @param dest_file_name Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
|
65
|
-
def initialize(name,
|
65
|
+
def initialize(name, dto, node_path, index, folder = nil, storage = nil, load_encoding = nil, password = nil, dest_file_name = nil)
|
66
66
|
self.name = name
|
67
|
-
self.node_path = node_path
|
68
67
|
self.dto = dto
|
68
|
+
self.node_path = node_path
|
69
69
|
self.index = index
|
70
70
|
self.folder = folder
|
71
71
|
self.storage = storage
|
data/lib/aspose_words_cloud/models/requests/InsertOrUpdateParagraphTabStopWithoutNodePathRequest.rb
ADDED
@@ -0,0 +1,73 @@
|
|
1
|
+
#
|
2
|
+
# --------------------------------------------------------------------------------------------------------------------
|
3
|
+
# <copyright company="Aspose" file="InsertOrUpdateParagraphTabStopWithoutNodePathRequest.rb">
|
4
|
+
# Copyright (c) 2019 Aspose.Words for Cloud
|
5
|
+
# </copyright>
|
6
|
+
# <summary>
|
7
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
8
|
+
# of this software and associated documentation files (the "Software"), to deal
|
9
|
+
# in the Software without restriction, including without limitation the rights
|
10
|
+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
11
|
+
# copies of the Software, and to permit persons to whom the Software is
|
12
|
+
# furnished to do so, subject to the following conditions:
|
13
|
+
#
|
14
|
+
# The above copyright notice and this permission notice shall be included in all
|
15
|
+
# copies or substantial portions of the Software.
|
16
|
+
#
|
17
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
18
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
19
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
20
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
21
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
22
|
+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
23
|
+
# SOFTWARE.
|
24
|
+
# </summary>
|
25
|
+
# --------------------------------------------------------------------------------------------------------------------
|
26
|
+
#
|
27
|
+
|
28
|
+
module AsposeWordsCloud
|
29
|
+
|
30
|
+
#
|
31
|
+
# Request model for insert_or_update_paragraph_tab_stop_without_node_path operation.
|
32
|
+
#
|
33
|
+
class InsertOrUpdateParagraphTabStopWithoutNodePathRequest
|
34
|
+
|
35
|
+
# The document name.
|
36
|
+
attr_accessor :name
|
37
|
+
# Paragraph tab stop.
|
38
|
+
attr_accessor :dto
|
39
|
+
# Object index.
|
40
|
+
attr_accessor :index
|
41
|
+
# Original document folder.
|
42
|
+
attr_accessor :folder
|
43
|
+
# Original document storage.
|
44
|
+
attr_accessor :storage
|
45
|
+
# Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
|
46
|
+
attr_accessor :load_encoding
|
47
|
+
# Password for opening an encrypted document.
|
48
|
+
attr_accessor :password
|
49
|
+
# Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
|
50
|
+
attr_accessor :dest_file_name
|
51
|
+
|
52
|
+
#
|
53
|
+
# Initializes a new instance.
|
54
|
+
# @param name The document name.
|
55
|
+
# @param dto Paragraph tab stop.
|
56
|
+
# @param index Object index.
|
57
|
+
# @param folder Original document folder.
|
58
|
+
# @param storage Original document storage.
|
59
|
+
# @param load_encoding Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
|
60
|
+
# @param password Password for opening an encrypted document.
|
61
|
+
# @param dest_file_name Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
|
62
|
+
def initialize(name, dto, index, folder = nil, storage = nil, load_encoding = nil, password = nil, dest_file_name = nil)
|
63
|
+
self.name = name
|
64
|
+
self.dto = dto
|
65
|
+
self.index = index
|
66
|
+
self.folder = folder
|
67
|
+
self.storage = storage
|
68
|
+
self.load_encoding = load_encoding
|
69
|
+
self.password = password
|
70
|
+
self.dest_file_name = dest_file_name
|
71
|
+
end
|
72
|
+
end
|
73
|
+
end
|
@@ -0,0 +1,81 @@
|
|
1
|
+
#
|
2
|
+
# --------------------------------------------------------------------------------------------------------------------
|
3
|
+
# <copyright company="Aspose" file="InsertParagraphWithoutNodePathRequest.rb">
|
4
|
+
# Copyright (c) 2019 Aspose.Words for Cloud
|
5
|
+
# </copyright>
|
6
|
+
# <summary>
|
7
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
8
|
+
# of this software and associated documentation files (the "Software"), to deal
|
9
|
+
# in the Software without restriction, including without limitation the rights
|
10
|
+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
11
|
+
# copies of the Software, and to permit persons to whom the Software is
|
12
|
+
# furnished to do so, subject to the following conditions:
|
13
|
+
#
|
14
|
+
# The above copyright notice and this permission notice shall be included in all
|
15
|
+
# copies or substantial portions of the Software.
|
16
|
+
#
|
17
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
18
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
19
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
20
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
21
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
22
|
+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
23
|
+
# SOFTWARE.
|
24
|
+
# </summary>
|
25
|
+
# --------------------------------------------------------------------------------------------------------------------
|
26
|
+
#
|
27
|
+
|
28
|
+
module AsposeWordsCloud
|
29
|
+
|
30
|
+
#
|
31
|
+
# Request model for insert_paragraph_without_node_path operation.
|
32
|
+
#
|
33
|
+
class InsertParagraphWithoutNodePathRequest
|
34
|
+
|
35
|
+
# The document name.
|
36
|
+
attr_accessor :name
|
37
|
+
# Paragraph data.
|
38
|
+
attr_accessor :paragraph
|
39
|
+
# Original document folder.
|
40
|
+
attr_accessor :folder
|
41
|
+
# Original document storage.
|
42
|
+
attr_accessor :storage
|
43
|
+
# Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
|
44
|
+
attr_accessor :load_encoding
|
45
|
+
# Password for opening an encrypted document.
|
46
|
+
attr_accessor :password
|
47
|
+
# Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
|
48
|
+
attr_accessor :dest_file_name
|
49
|
+
# Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
|
50
|
+
attr_accessor :revision_author
|
51
|
+
# The date and time to use for revisions.
|
52
|
+
attr_accessor :revision_date_time
|
53
|
+
# Paragraph will be inserted before node with index.
|
54
|
+
attr_accessor :insert_before_node
|
55
|
+
|
56
|
+
#
|
57
|
+
# Initializes a new instance.
|
58
|
+
# @param name The document name.
|
59
|
+
# @param paragraph Paragraph data.
|
60
|
+
# @param folder Original document folder.
|
61
|
+
# @param storage Original document storage.
|
62
|
+
# @param load_encoding Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
|
63
|
+
# @param password Password for opening an encrypted document.
|
64
|
+
# @param dest_file_name Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
|
65
|
+
# @param revision_author Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
|
66
|
+
# @param revision_date_time The date and time to use for revisions.
|
67
|
+
# @param insert_before_node Paragraph will be inserted before node with index.
|
68
|
+
def initialize(name, paragraph, folder = nil, storage = nil, load_encoding = nil, password = nil, dest_file_name = nil, revision_author = nil, revision_date_time = nil, insert_before_node = nil)
|
69
|
+
self.name = name
|
70
|
+
self.paragraph = paragraph
|
71
|
+
self.folder = folder
|
72
|
+
self.storage = storage
|
73
|
+
self.load_encoding = load_encoding
|
74
|
+
self.password = password
|
75
|
+
self.dest_file_name = dest_file_name
|
76
|
+
self.revision_author = revision_author
|
77
|
+
self.revision_date_time = revision_date_time
|
78
|
+
self.insert_before_node = insert_before_node
|
79
|
+
end
|
80
|
+
end
|
81
|
+
end
|
@@ -0,0 +1,81 @@
|
|
1
|
+
#
|
2
|
+
# --------------------------------------------------------------------------------------------------------------------
|
3
|
+
# <copyright company="Aspose" file="UpdateParagraphFormatWithoutNodePathRequest.rb">
|
4
|
+
# Copyright (c) 2019 Aspose.Words for Cloud
|
5
|
+
# </copyright>
|
6
|
+
# <summary>
|
7
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
8
|
+
# of this software and associated documentation files (the "Software"), to deal
|
9
|
+
# in the Software without restriction, including without limitation the rights
|
10
|
+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
11
|
+
# copies of the Software, and to permit persons to whom the Software is
|
12
|
+
# furnished to do so, subject to the following conditions:
|
13
|
+
#
|
14
|
+
# The above copyright notice and this permission notice shall be included in all
|
15
|
+
# copies or substantial portions of the Software.
|
16
|
+
#
|
17
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
18
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
19
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
20
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
21
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
22
|
+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
23
|
+
# SOFTWARE.
|
24
|
+
# </summary>
|
25
|
+
# --------------------------------------------------------------------------------------------------------------------
|
26
|
+
#
|
27
|
+
|
28
|
+
module AsposeWordsCloud
|
29
|
+
|
30
|
+
#
|
31
|
+
# Request model for update_paragraph_format_without_node_path operation.
|
32
|
+
#
|
33
|
+
class UpdateParagraphFormatWithoutNodePathRequest
|
34
|
+
|
35
|
+
# The document name.
|
36
|
+
attr_accessor :name
|
37
|
+
# Paragraph format object.
|
38
|
+
attr_accessor :dto
|
39
|
+
# Object index.
|
40
|
+
attr_accessor :index
|
41
|
+
# Original document folder.
|
42
|
+
attr_accessor :folder
|
43
|
+
# Original document storage.
|
44
|
+
attr_accessor :storage
|
45
|
+
# Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
|
46
|
+
attr_accessor :load_encoding
|
47
|
+
# Password for opening an encrypted document.
|
48
|
+
attr_accessor :password
|
49
|
+
# Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
|
50
|
+
attr_accessor :dest_file_name
|
51
|
+
# Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
|
52
|
+
attr_accessor :revision_author
|
53
|
+
# The date and time to use for revisions.
|
54
|
+
attr_accessor :revision_date_time
|
55
|
+
|
56
|
+
#
|
57
|
+
# Initializes a new instance.
|
58
|
+
# @param name The document name.
|
59
|
+
# @param dto Paragraph format object.
|
60
|
+
# @param index Object index.
|
61
|
+
# @param folder Original document folder.
|
62
|
+
# @param storage Original document storage.
|
63
|
+
# @param load_encoding Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
|
64
|
+
# @param password Password for opening an encrypted document.
|
65
|
+
# @param dest_file_name Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
|
66
|
+
# @param revision_author Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
|
67
|
+
# @param revision_date_time The date and time to use for revisions.
|
68
|
+
def initialize(name, dto, index, folder = nil, storage = nil, load_encoding = nil, password = nil, dest_file_name = nil, revision_author = nil, revision_date_time = nil)
|
69
|
+
self.name = name
|
70
|
+
self.dto = dto
|
71
|
+
self.index = index
|
72
|
+
self.folder = folder
|
73
|
+
self.storage = storage
|
74
|
+
self.load_encoding = load_encoding
|
75
|
+
self.password = password
|
76
|
+
self.dest_file_name = dest_file_name
|
77
|
+
self.revision_author = revision_author
|
78
|
+
self.revision_date_time = revision_date_time
|
79
|
+
end
|
80
|
+
end
|
81
|
+
end
|
data/lib/aspose_words_cloud/models/requests/UpdateParagraphListFormatWithoutNodePathRequest.rb
ADDED
@@ -0,0 +1,81 @@
|
|
1
|
+
#
|
2
|
+
# --------------------------------------------------------------------------------------------------------------------
|
3
|
+
# <copyright company="Aspose" file="UpdateParagraphListFormatWithoutNodePathRequest.rb">
|
4
|
+
# Copyright (c) 2019 Aspose.Words for Cloud
|
5
|
+
# </copyright>
|
6
|
+
# <summary>
|
7
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
8
|
+
# of this software and associated documentation files (the "Software"), to deal
|
9
|
+
# in the Software without restriction, including without limitation the rights
|
10
|
+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
11
|
+
# copies of the Software, and to permit persons to whom the Software is
|
12
|
+
# furnished to do so, subject to the following conditions:
|
13
|
+
#
|
14
|
+
# The above copyright notice and this permission notice shall be included in all
|
15
|
+
# copies or substantial portions of the Software.
|
16
|
+
#
|
17
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
18
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
19
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
20
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
21
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
22
|
+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
23
|
+
# SOFTWARE.
|
24
|
+
# </summary>
|
25
|
+
# --------------------------------------------------------------------------------------------------------------------
|
26
|
+
#
|
27
|
+
|
28
|
+
module AsposeWordsCloud
|
29
|
+
|
30
|
+
#
|
31
|
+
# Request model for update_paragraph_list_format_without_node_path operation.
|
32
|
+
#
|
33
|
+
class UpdateParagraphListFormatWithoutNodePathRequest
|
34
|
+
|
35
|
+
# The document name.
|
36
|
+
attr_accessor :name
|
37
|
+
# Paragraph format object.
|
38
|
+
attr_accessor :dto
|
39
|
+
# Object index.
|
40
|
+
attr_accessor :index
|
41
|
+
# Original document folder.
|
42
|
+
attr_accessor :folder
|
43
|
+
# Original document storage.
|
44
|
+
attr_accessor :storage
|
45
|
+
# Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
|
46
|
+
attr_accessor :load_encoding
|
47
|
+
# Password for opening an encrypted document.
|
48
|
+
attr_accessor :password
|
49
|
+
# Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
|
50
|
+
attr_accessor :dest_file_name
|
51
|
+
# Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
|
52
|
+
attr_accessor :revision_author
|
53
|
+
# The date and time to use for revisions.
|
54
|
+
attr_accessor :revision_date_time
|
55
|
+
|
56
|
+
#
|
57
|
+
# Initializes a new instance.
|
58
|
+
# @param name The document name.
|
59
|
+
# @param dto Paragraph format object.
|
60
|
+
# @param index Object index.
|
61
|
+
# @param folder Original document folder.
|
62
|
+
# @param storage Original document storage.
|
63
|
+
# @param load_encoding Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
|
64
|
+
# @param password Password for opening an encrypted document.
|
65
|
+
# @param dest_file_name Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
|
66
|
+
# @param revision_author Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
|
67
|
+
# @param revision_date_time The date and time to use for revisions.
|
68
|
+
def initialize(name, dto, index, folder = nil, storage = nil, load_encoding = nil, password = nil, dest_file_name = nil, revision_author = nil, revision_date_time = nil)
|
69
|
+
self.name = name
|
70
|
+
self.dto = dto
|
71
|
+
self.index = index
|
72
|
+
self.folder = folder
|
73
|
+
self.storage = storage
|
74
|
+
self.load_encoding = load_encoding
|
75
|
+
self.password = password
|
76
|
+
self.dest_file_name = dest_file_name
|
77
|
+
self.revision_author = revision_author
|
78
|
+
self.revision_date_time = revision_date_time
|
79
|
+
end
|
80
|
+
end
|
81
|
+
end
|
@@ -34,6 +34,7 @@ module AsposeWordsCloud
|
|
34
34
|
# Gets or sets request Id.
|
35
35
|
attr_accessor :request_id
|
36
36
|
|
37
|
+
# Gets or sets styles which are contained in document.
|
37
38
|
attr_accessor :styles
|
38
39
|
|
39
40
|
|
@@ -49,7 +50,7 @@ module AsposeWordsCloud
|
|
49
50
|
def self.swagger_types
|
50
51
|
{
|
51
52
|
:'request_id' => :'String',
|
52
|
-
:'styles' => :'
|
53
|
+
:'styles' => :'Array<Style>'
|
53
54
|
}
|
54
55
|
end
|
55
56
|
|
@@ -66,7 +67,9 @@ module AsposeWordsCloud
|
|
66
67
|
end
|
67
68
|
|
68
69
|
if attributes.key?(:'Styles')
|
69
|
-
|
70
|
+
if (value = attributes[:'Styles']).is_a?(Array)
|
71
|
+
self.styles = value
|
72
|
+
end
|
70
73
|
end
|
71
74
|
|
72
75
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aspose_words_cloud
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 20.
|
4
|
+
version: 20.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- YaroslawEkimov
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-06-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -111,8 +111,10 @@ files:
|
|
111
111
|
- lib/aspose_words_cloud/models/downsample_options_data.rb
|
112
112
|
- lib/aspose_words_cloud/models/drawing_object.rb
|
113
113
|
- lib/aspose_words_cloud/models/drawing_object_collection.rb
|
114
|
+
- lib/aspose_words_cloud/models/drawing_object_insert.rb
|
114
115
|
- lib/aspose_words_cloud/models/drawing_object_link.rb
|
115
116
|
- lib/aspose_words_cloud/models/drawing_object_response.rb
|
117
|
+
- lib/aspose_words_cloud/models/drawing_object_update.rb
|
116
118
|
- lib/aspose_words_cloud/models/drawing_objects_response.rb
|
117
119
|
- lib/aspose_words_cloud/models/emf_save_options_data.rb
|
118
120
|
- lib/aspose_words_cloud/models/epub_save_options_data.rb
|
@@ -237,6 +239,7 @@ files:
|
|
237
239
|
- lib/aspose_words_cloud/models/requests/CreateFolderRequest.rb
|
238
240
|
- lib/aspose_words_cloud/models/requests/CreateOrUpdateDocumentPropertyRequest.rb
|
239
241
|
- lib/aspose_words_cloud/models/requests/DeleteAllParagraphTabStopsRequest.rb
|
242
|
+
- lib/aspose_words_cloud/models/requests/DeleteAllParagraphTabStopsWithoutNodePathRequest.rb
|
240
243
|
- lib/aspose_words_cloud/models/requests/DeleteBorderRequest.rb
|
241
244
|
- lib/aspose_words_cloud/models/requests/DeleteBordersRequest.rb
|
242
245
|
- lib/aspose_words_cloud/models/requests/DeleteCommentRequest.rb
|
@@ -259,8 +262,10 @@ files:
|
|
259
262
|
- lib/aspose_words_cloud/models/requests/DeleteOfficeMathObjectRequest.rb
|
260
263
|
- lib/aspose_words_cloud/models/requests/DeleteOfficeMathObjectWithoutNodePathRequest.rb
|
261
264
|
- lib/aspose_words_cloud/models/requests/DeleteParagraphListFormatRequest.rb
|
265
|
+
- lib/aspose_words_cloud/models/requests/DeleteParagraphListFormatWithoutNodePathRequest.rb
|
262
266
|
- lib/aspose_words_cloud/models/requests/DeleteParagraphRequest.rb
|
263
267
|
- lib/aspose_words_cloud/models/requests/DeleteParagraphTabStopRequest.rb
|
268
|
+
- lib/aspose_words_cloud/models/requests/DeleteParagraphTabStopWithoutNodePathRequest.rb
|
264
269
|
- lib/aspose_words_cloud/models/requests/DeleteParagraphWithoutNodePathRequest.rb
|
265
270
|
- lib/aspose_words_cloud/models/requests/DeleteRunRequest.rb
|
266
271
|
- lib/aspose_words_cloud/models/requests/DeleteSectionRequest.rb
|
@@ -325,6 +330,7 @@ files:
|
|
325
330
|
- lib/aspose_words_cloud/models/requests/GetParagraphListFormatWithoutNodePathRequest.rb
|
326
331
|
- lib/aspose_words_cloud/models/requests/GetParagraphRequest.rb
|
327
332
|
- lib/aspose_words_cloud/models/requests/GetParagraphTabStopsRequest.rb
|
333
|
+
- lib/aspose_words_cloud/models/requests/GetParagraphTabStopsWithoutNodePathRequest.rb
|
328
334
|
- lib/aspose_words_cloud/models/requests/GetParagraphWithoutNodePathRequest.rb
|
329
335
|
- lib/aspose_words_cloud/models/requests/GetParagraphsRequest.rb
|
330
336
|
- lib/aspose_words_cloud/models/requests/GetParagraphsWithoutNodePathRequest.rb
|
@@ -360,8 +366,10 @@ files:
|
|
360
366
|
- lib/aspose_words_cloud/models/requests/InsertHeaderFooterRequest.rb
|
361
367
|
- lib/aspose_words_cloud/models/requests/InsertListRequest.rb
|
362
368
|
- lib/aspose_words_cloud/models/requests/InsertOrUpdateParagraphTabStopRequest.rb
|
369
|
+
- lib/aspose_words_cloud/models/requests/InsertOrUpdateParagraphTabStopWithoutNodePathRequest.rb
|
363
370
|
- lib/aspose_words_cloud/models/requests/InsertPageNumbersRequest.rb
|
364
371
|
- lib/aspose_words_cloud/models/requests/InsertParagraphRequest.rb
|
372
|
+
- lib/aspose_words_cloud/models/requests/InsertParagraphWithoutNodePathRequest.rb
|
365
373
|
- lib/aspose_words_cloud/models/requests/InsertRunRequest.rb
|
366
374
|
- lib/aspose_words_cloud/models/requests/InsertStyleRequest.rb
|
367
375
|
- lib/aspose_words_cloud/models/requests/InsertTableCellRequest.rb
|
@@ -408,7 +416,9 @@ files:
|
|
408
416
|
- lib/aspose_words_cloud/models/requests/UpdateListLevelRequest.rb
|
409
417
|
- lib/aspose_words_cloud/models/requests/UpdateListRequest.rb
|
410
418
|
- lib/aspose_words_cloud/models/requests/UpdateParagraphFormatRequest.rb
|
419
|
+
- lib/aspose_words_cloud/models/requests/UpdateParagraphFormatWithoutNodePathRequest.rb
|
411
420
|
- lib/aspose_words_cloud/models/requests/UpdateParagraphListFormatRequest.rb
|
421
|
+
- lib/aspose_words_cloud/models/requests/UpdateParagraphListFormatWithoutNodePathRequest.rb
|
412
422
|
- lib/aspose_words_cloud/models/requests/UpdateRunFontRequest.rb
|
413
423
|
- lib/aspose_words_cloud/models/requests/UpdateRunRequest.rb
|
414
424
|
- lib/aspose_words_cloud/models/requests/UpdateSectionPageSetupRequest.rb
|
@@ -454,7 +464,6 @@ files:
|
|
454
464
|
- lib/aspose_words_cloud/models/style_insert.rb
|
455
465
|
- lib/aspose_words_cloud/models/style_response.rb
|
456
466
|
- lib/aspose_words_cloud/models/style_update.rb
|
457
|
-
- lib/aspose_words_cloud/models/styles.rb
|
458
467
|
- lib/aspose_words_cloud/models/styles_response.rb
|
459
468
|
- lib/aspose_words_cloud/models/svg_save_options_data.rb
|
460
469
|
- lib/aspose_words_cloud/models/tab_stop.rb
|