File tree Expand file tree Collapse file tree 4 files changed +13
-5
lines changed
Sources/AlibabacloudQualitycheck20190115 Expand file tree Collapse file tree 4 files changed +13
-5
lines changed Original file line number Diff line number Diff line change 1
1
Pod ::Spec . new do |spec |
2
2
3
3
spec . name = "AlibabacloudQualitycheck20190115"
4
- spec . version = "7.0.0 "
4
+ spec . version = "7.0.1 "
5
5
spec . license = "Apache 2.0"
6
6
spec . summary = "Alibaba Cloud Qualitycheck (20190115) SDK Library for Swift"
7
7
spec . homepage = "https://github.com/alibabacloud-sdk-swift/qualitycheck-20190115"
Original file line number Diff line number Diff line change 17
17
要使用 [ Carthage] ( https://github.com/Carthage/Carthage ) 将 ` AlibabacloudQualitycheck20190115 ` 集成到你的 Xcode 项目中,需要在 ` Cartfile ` 中定义以下内容:
18
18
19
19
``` ogdl
20
- github "alibabacloud-sdk-swift/qualitycheck-20190115" "7.0.0 "
20
+ github "alibabacloud-sdk-swift/qualitycheck-20190115" "7.0.1 "
21
21
```
22
22
23
23
### Swift 包管理工具
@@ -26,7 +26,7 @@ github "alibabacloud-sdk-swift/qualitycheck-20190115" "7.0.0"
26
26
27
27
``` swift
28
28
dependencies: [
29
- .package (url : " https://github.com/alibabacloud-sdk-swift/qualitycheck-20190115.git" , from : " 7.0.0 " )
29
+ .package (url : " https://github.com/alibabacloud-sdk-swift/qualitycheck-20190115.git" , from : " 7.0.1 " )
30
30
]
31
31
```
32
32
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ English | [简体中文](README-CN.md)
17
17
To integrate ` AlibabacloudQualitycheck20190115 ` into your Xcode project using [ Carthage] ( https://github.com/Carthage/Carthage ) , specify it in your ` Cartfile ` :
18
18
19
19
``` ogdl
20
- github "alibabacloud-sdk-swift/qualitycheck-20190115" "7.0.0 "
20
+ github "alibabacloud-sdk-swift/qualitycheck-20190115" "7.0.1 "
21
21
```
22
22
23
23
### Swift Package Manager
@@ -26,7 +26,7 @@ To integrate `AlibabacloudQualitycheck20190115` into your Xcode project using [S
26
26
27
27
``` swift
28
28
dependencies: [
29
- .package (url : " https://github.com/alibabacloud-sdk-swift/qualitycheck-20190115.git" , from : " 7.0.0 " )
29
+ .package (url : " https://github.com/alibabacloud-sdk-swift/qualitycheck-20190115.git" , from : " 7.0.1 " )
30
30
]
31
31
```
32
32
Original file line number Diff line number Diff line change @@ -10375,6 +10375,8 @@ public class GetResultResponseBody : Tea.TeaModel {
10375
10375
10376
10376
public var end: Int64?
10377
10377
10378
+ public var identity: String?
10379
+
10378
10380
public var role: String?
10379
10381
10380
10382
public var speechRate: Int32?
@@ -10404,6 +10406,9 @@ public class GetResultResponseBody : Tea.TeaModel {
10404
10406
if self.end != nil {
10405
10407
map["End"] = self.end!
10406
10408
}
10409
+ if self.identity != nil {
10410
+ map["Identity"] = self.identity!
10411
+ }
10407
10412
if self.role != nil {
10408
10413
map["Role"] = self.role!
10409
10414
}
@@ -10426,6 +10431,9 @@ public class GetResultResponseBody : Tea.TeaModel {
10426
10431
if dict.keys.contains("End") {
10427
10432
self.end = dict["End"] as! Int64
10428
10433
}
10434
+ if dict.keys.contains("Identity") {
10435
+ self.identity = dict["Identity"] as! String
10436
+ }
10429
10437
if dict.keys.contains("Role") {
10430
10438
self.role = dict["Role"] as! String
10431
10439
}
You can’t perform that action at this time.
0 commit comments