Skip to content

Commit 66f2649

Browse files
committed
Update API SubmitCopyrightJob: update request parameters StartTime' type has changed.
1 parent e5e18a0 commit 66f2649

File tree

5 files changed

+25
-25
lines changed

5 files changed

+25
-25
lines changed

AlibabacloudICE20201109.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |spec|
22

33
spec.name = "AlibabacloudICE20201109"
4-
spec.version = "5.0.7"
4+
spec.version = "6.0.0"
55
spec.license = "Apache 2.0"
66
spec.summary = "Alibaba Cloud ICE (20201109) SDK Library for Swift"
77
spec.homepage = "https://github.com/alibabacloud-sdk-swift/ice-20201109"

README-CN.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
要使用 [Carthage](https://github.com/Carthage/Carthage)`AlibabacloudICE20201109` 集成到你的 Xcode 项目中,需要在 `Cartfile` 中定义以下内容:
1818

1919
```ogdl
20-
github "alibabacloud-sdk-swift/ice-20201109" "5.0.7"
20+
github "alibabacloud-sdk-swift/ice-20201109" "6.0.0"
2121
```
2222

2323
### Swift 包管理工具
@@ -26,7 +26,7 @@ github "alibabacloud-sdk-swift/ice-20201109" "5.0.7"
2626

2727
```swift
2828
dependencies: [
29-
.package(url: "https://github.com/alibabacloud-sdk-swift/ice-20201109.git", from: "5.0.7")
29+
.package(url: "https://github.com/alibabacloud-sdk-swift/ice-20201109.git", from: "6.0.0")
3030
]
3131
```
3232

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ English | [简体中文](README-CN.md)
1717
To integrate `AlibabacloudICE20201109` into your Xcode project using [Carthage](https://github.com/Carthage/Carthage), specify it in your `Cartfile`:
1818

1919
```ogdl
20-
github "alibabacloud-sdk-swift/ice-20201109" "5.0.7"
20+
github "alibabacloud-sdk-swift/ice-20201109" "6.0.0"
2121
```
2222

2323
### Swift Package Manager
@@ -26,7 +26,7 @@ To integrate `AlibabacloudICE20201109` into your Xcode project using [Swift Pack
2626

2727
```swift
2828
dependencies: [
29-
.package(url: "https://github.com/alibabacloud-sdk-swift/ice-20201109.git", from: "5.0.7")
29+
.package(url: "https://github.com/alibabacloud-sdk-swift/ice-20201109.git", from: "6.0.0")
3030
]
3131
```
3232

Sources/AlibabacloudICE20201109/Client.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10198,10 +10198,10 @@ open class Client : AlibabacloudOpenApi.Client {
1019810198
query["Params"] = request.params ?? "";
1019910199
}
1020010200
if (!TeaUtils.Client.isUnset(request.startTime)) {
10201-
query["StartTime"] = request.startTime ?? "";
10201+
query["StartTime"] = request.startTime!;
1020210202
}
1020310203
if (!TeaUtils.Client.isUnset(request.totalTime)) {
10204-
query["TotalTime"] = request.totalTime ?? "";
10204+
query["TotalTime"] = request.totalTime!;
1020510205
}
1020610206
if (!TeaUtils.Client.isUnset(request.userData)) {
1020710207
query["UserData"] = request.userData ?? "";
@@ -11543,10 +11543,10 @@ open class Client : AlibabacloudOpenApi.Client {
1154311543
query["Output"] = request.outputShrink ?? "";
1154411544
}
1154511545
if (!TeaUtils.Client.isUnset(request.startTime)) {
11546-
query["StartTime"] = request.startTime ?? "";
11546+
query["StartTime"] = request.startTime!;
1154711547
}
1154811548
if (!TeaUtils.Client.isUnset(request.totalTime)) {
11549-
query["TotalTime"] = request.totalTime ?? "";
11549+
query["TotalTime"] = request.totalTime!;
1155011550
}
1155111551
if (!TeaUtils.Client.isUnset(request.userData)) {
1155211552
query["UserData"] = request.userData ?? "";

Sources/AlibabacloudICE20201109/Models.swift

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -79007,9 +79007,9 @@ public class SubmitCopyrightJobRequest : Tea.TeaModel {
7900779007

7900879008
public var params: String?
7900979009

79010-
public var startTime: String?
79010+
public var startTime: Int64?
7901179011

79012-
public var totalTime: String?
79012+
public var totalTime: Int64?
7901379013

7901479014
public var userData: String?
7901579015

@@ -79083,10 +79083,10 @@ public class SubmitCopyrightJobRequest : Tea.TeaModel {
7908379083
self.params = dict["Params"] as! String
7908479084
}
7908579085
if dict.keys.contains("StartTime") {
79086-
self.startTime = dict["StartTime"] as! String
79086+
self.startTime = dict["StartTime"] as! Int64
7908779087
}
7908879088
if dict.keys.contains("TotalTime") {
79089-
self.totalTime = dict["TotalTime"] as! String
79089+
self.totalTime = dict["TotalTime"] as! Int64
7909079090
}
7909179091
if dict.keys.contains("UserData") {
7909279092
self.userData = dict["UserData"] as! String
@@ -79107,9 +79107,9 @@ public class SubmitCopyrightJobShrinkRequest : Tea.TeaModel {
7910779107

7910879108
public var params: String?
7910979109

79110-
public var startTime: String?
79110+
public var startTime: Int64?
7911179111

79112-
public var totalTime: String?
79112+
public var totalTime: Int64?
7911379113

7911479114
public var userData: String?
7911579115

@@ -79177,10 +79177,10 @@ public class SubmitCopyrightJobShrinkRequest : Tea.TeaModel {
7917779177
self.params = dict["Params"] as! String
7917879178
}
7917979179
if dict.keys.contains("StartTime") {
79180-
self.startTime = dict["StartTime"] as! String
79180+
self.startTime = dict["StartTime"] as! Int64
7918179181
}
7918279182
if dict.keys.contains("TotalTime") {
79183-
self.totalTime = dict["TotalTime"] as! String
79183+
self.totalTime = dict["TotalTime"] as! Int64
7918479184
}
7918579185
if dict.keys.contains("UserData") {
7918679186
self.userData = dict["UserData"] as! String
@@ -87716,9 +87716,9 @@ public class SubmitTraceAbJobRequest : Tea.TeaModel {
8771687716

8771787717
public var output: SubmitTraceAbJobRequest.Output?
8771887718

87719-
public var startTime: String?
87719+
public var startTime: Int64?
8772087720

87721-
public var totalTime: String?
87721+
public var totalTime: Int64?
8772287722

8772387723
public var userData: String?
8772487724

@@ -87780,10 +87780,10 @@ public class SubmitTraceAbJobRequest : Tea.TeaModel {
8778087780
self.output = model
8778187781
}
8778287782
if dict.keys.contains("StartTime") {
87783-
self.startTime = dict["StartTime"] as! String
87783+
self.startTime = dict["StartTime"] as! Int64
8778487784
}
8778587785
if dict.keys.contains("TotalTime") {
87786-
self.totalTime = dict["TotalTime"] as! String
87786+
self.totalTime = dict["TotalTime"] as! Int64
8778787787
}
8778887788
if dict.keys.contains("UserData") {
8778987789
self.userData = dict["UserData"] as! String
@@ -87800,9 +87800,9 @@ public class SubmitTraceAbJobShrinkRequest : Tea.TeaModel {
8780087800

8780187801
public var outputShrink: String?
8780287802

87803-
public var startTime: String?
87803+
public var startTime: Int64?
8780487804

87805-
public var totalTime: String?
87805+
public var totalTime: Int64?
8780687806

8780787807
public var userData: String?
8780887808

@@ -87858,10 +87858,10 @@ public class SubmitTraceAbJobShrinkRequest : Tea.TeaModel {
8785887858
self.outputShrink = dict["Output"] as! String
8785987859
}
8786087860
if dict.keys.contains("StartTime") {
87861-
self.startTime = dict["StartTime"] as! String
87861+
self.startTime = dict["StartTime"] as! Int64
8786287862
}
8786387863
if dict.keys.contains("TotalTime") {
87864-
self.totalTime = dict["TotalTime"] as! String
87864+
self.totalTime = dict["TotalTime"] as! Int64
8786587865
}
8786687866
if dict.keys.contains("UserData") {
8786787867
self.userData = dict["UserData"] as! String

0 commit comments

Comments
 (0)