Skip to content

Commit de38e29

Browse files
author
evgeny.ivanov
committed
SDK regenerated by CI server [ci skip]
1 parent cee0a46 commit de38e29

File tree

110 files changed

+3217
-11539
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

110 files changed

+3217
-11539
lines changed

Sources/AsposeWordsCloud/Api/WordsAPI.swift

Lines changed: 2693 additions & 6279 deletions
Large diffs are not rendered by default.

Sources/AsposeWordsCloud/Model/Requests/DeleteAllParagraphTabStopsRequest.swift

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ import Foundation
3030
// Request model for deleteAllParagraphTabStops operation.
3131
public class DeleteAllParagraphTabStopsRequest {
3232
private let name : String;
33-
private let nodePath : String;
3433
private let index : Int;
34+
private let nodePath : String?;
3535
private let folder : String?;
3636
private let storage : String?;
3737
private let loadEncoding : String?;
@@ -40,8 +40,8 @@ public class DeleteAllParagraphTabStopsRequest {
4040

4141
private enum CodingKeys: String, CodingKey {
4242
case name;
43-
case nodePath;
4443
case index;
44+
case nodePath;
4545
case folder;
4646
case storage;
4747
case loadEncoding;
@@ -51,10 +51,10 @@ public class DeleteAllParagraphTabStopsRequest {
5151
}
5252

5353
// Initializes a new instance of the DeleteAllParagraphTabStopsRequest class.
54-
public init(name : String, nodePath : String, index : Int, folder : String? = nil, storage : String? = nil, loadEncoding : String? = nil, password : String? = nil, destFileName : String? = nil) {
54+
public init(name : String, index : Int, nodePath : String? = nil, folder : String? = nil, storage : String? = nil, loadEncoding : String? = nil, password : String? = nil, destFileName : String? = nil) {
5555
self.name = name;
56-
self.nodePath = nodePath;
5756
self.index = index;
57+
self.nodePath = nodePath;
5858
self.folder = folder;
5959
self.storage = storage;
6060
self.loadEncoding = loadEncoding;
@@ -67,16 +67,16 @@ public class DeleteAllParagraphTabStopsRequest {
6767
return self.name;
6868
}
6969

70-
// Path to the node which contains paragraph.
71-
public func getNodePath() -> String {
72-
return self.nodePath;
73-
}
74-
7570
// Object index.
7671
public func getIndex() -> Int {
7772
return self.index;
7873
}
7974

75+
// Path to the node which contains paragraph.
76+
public func getNodePath() -> String? {
77+
return self.nodePath;
78+
}
79+
8080
// Original document folder.
8181
public func getFolder() -> String? {
8282
return self.folder;

Sources/AsposeWordsCloud/Model/Requests/DeleteAllParagraphTabStopsWithoutNodePathRequest.swift

Lines changed: 0 additions & 96 deletions
This file was deleted.

Sources/AsposeWordsCloud/Model/Requests/DeleteBorderRequest.swift

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ import Foundation
3030
// Request model for deleteBorder operation.
3131
public class DeleteBorderRequest {
3232
private let name : String;
33-
private let nodePath : String;
3433
private let borderType : String;
34+
private let nodePath : String?;
3535
private let folder : String?;
3636
private let storage : String?;
3737
private let loadEncoding : String?;
@@ -42,8 +42,8 @@ public class DeleteBorderRequest {
4242

4343
private enum CodingKeys: String, CodingKey {
4444
case name;
45-
case nodePath;
4645
case borderType;
46+
case nodePath;
4747
case folder;
4848
case storage;
4949
case loadEncoding;
@@ -55,10 +55,10 @@ public class DeleteBorderRequest {
5555
}
5656

5757
// Initializes a new instance of the DeleteBorderRequest class.
58-
public init(name : String, nodePath : String, borderType : String, folder : String? = nil, storage : String? = nil, loadEncoding : String? = nil, password : String? = nil, destFileName : String? = nil, revisionAuthor : String? = nil, revisionDateTime : String? = nil) {
58+
public init(name : String, borderType : String, nodePath : String? = nil, folder : String? = nil, storage : String? = nil, loadEncoding : String? = nil, password : String? = nil, destFileName : String? = nil, revisionAuthor : String? = nil, revisionDateTime : String? = nil) {
5959
self.name = name;
60-
self.nodePath = nodePath;
6160
self.borderType = borderType;
61+
self.nodePath = nodePath;
6262
self.folder = folder;
6363
self.storage = storage;
6464
self.loadEncoding = loadEncoding;
@@ -73,16 +73,16 @@ public class DeleteBorderRequest {
7373
return self.name;
7474
}
7575

76-
// Path to the node with border(node should be paragraph, cell or row).
77-
public func getNodePath() -> String {
78-
return self.nodePath;
79-
}
80-
8176
// Border type.
8277
public func getBorderType() -> String {
8378
return self.borderType;
8479
}
8580

81+
// Path to the node with border(node should be paragraph, cell or row).
82+
public func getNodePath() -> String? {
83+
return self.nodePath;
84+
}
85+
8686
// Original document folder.
8787
public func getFolder() -> String? {
8888
return self.folder;

Sources/AsposeWordsCloud/Model/Requests/DeleteBordersRequest.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ import Foundation
3030
// Request model for deleteBorders operation.
3131
public class DeleteBordersRequest {
3232
private let name : String;
33-
private let nodePath : String;
33+
private let nodePath : String?;
3434
private let folder : String?;
3535
private let storage : String?;
3636
private let loadEncoding : String?;
@@ -53,7 +53,7 @@ public class DeleteBordersRequest {
5353
}
5454

5555
// Initializes a new instance of the DeleteBordersRequest class.
56-
public init(name : String, nodePath : String, folder : String? = nil, storage : String? = nil, loadEncoding : String? = nil, password : String? = nil, destFileName : String? = nil, revisionAuthor : String? = nil, revisionDateTime : String? = nil) {
56+
public init(name : String, nodePath : String? = nil, folder : String? = nil, storage : String? = nil, loadEncoding : String? = nil, password : String? = nil, destFileName : String? = nil, revisionAuthor : String? = nil, revisionDateTime : String? = nil) {
5757
self.name = name;
5858
self.nodePath = nodePath;
5959
self.folder = folder;
@@ -71,7 +71,7 @@ public class DeleteBordersRequest {
7171
}
7272

7373
// Path to the node with borders(node should be paragraph, cell or row).
74-
public func getNodePath() -> String {
74+
public func getNodePath() -> String? {
7575
return self.nodePath;
7676
}
7777

Sources/AsposeWordsCloud/Model/Requests/DeleteDrawingObjectRequest.swift

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ import Foundation
3030
// Request model for deleteDrawingObject operation.
3131
public class DeleteDrawingObjectRequest {
3232
private let name : String;
33-
private let nodePath : String;
3433
private let index : Int;
34+
private let nodePath : String?;
3535
private let folder : String?;
3636
private let storage : String?;
3737
private let loadEncoding : String?;
@@ -42,8 +42,8 @@ public class DeleteDrawingObjectRequest {
4242

4343
private enum CodingKeys: String, CodingKey {
4444
case name;
45-
case nodePath;
4645
case index;
46+
case nodePath;
4747
case folder;
4848
case storage;
4949
case loadEncoding;
@@ -55,10 +55,10 @@ public class DeleteDrawingObjectRequest {
5555
}
5656

5757
// Initializes a new instance of the DeleteDrawingObjectRequest class.
58-
public init(name : String, nodePath : String, index : Int, folder : String? = nil, storage : String? = nil, loadEncoding : String? = nil, password : String? = nil, destFileName : String? = nil, revisionAuthor : String? = nil, revisionDateTime : String? = nil) {
58+
public init(name : String, index : Int, nodePath : String? = nil, folder : String? = nil, storage : String? = nil, loadEncoding : String? = nil, password : String? = nil, destFileName : String? = nil, revisionAuthor : String? = nil, revisionDateTime : String? = nil) {
5959
self.name = name;
60-
self.nodePath = nodePath;
6160
self.index = index;
61+
self.nodePath = nodePath;
6262
self.folder = folder;
6363
self.storage = storage;
6464
self.loadEncoding = loadEncoding;
@@ -73,16 +73,16 @@ public class DeleteDrawingObjectRequest {
7373
return self.name;
7474
}
7575

76-
// Path to the node, which contains collection of drawing objects.
77-
public func getNodePath() -> String {
78-
return self.nodePath;
79-
}
80-
8176
// Object index.
8277
public func getIndex() -> Int {
8378
return self.index;
8479
}
8580

81+
// Path to the node, which contains collection of drawing objects.
82+
public func getNodePath() -> String? {
83+
return self.nodePath;
84+
}
85+
8686
// Original document folder.
8787
public func getFolder() -> String? {
8888
return self.folder;

0 commit comments

Comments
 (0)