File tree Expand file tree Collapse file tree 4 files changed +13
-5
lines changed
Sources/AlibabacloudICE20201109 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 = "AlibabacloudICE20201109"
4
- spec . version = "5.0.4 "
4
+ spec . version = "5.0.5 "
5
5
spec . license = "Apache 2.0"
6
6
spec . summary = "Alibaba Cloud ICE (20201109) SDK Library for Swift"
7
7
spec . homepage = "https://github.com/alibabacloud-sdk-swift/ice-20201109"
Original file line number Diff line number Diff line change 17
17
要使用 [ Carthage] ( https://github.com/Carthage/Carthage ) 将 ` AlibabacloudICE20201109 ` 集成到你的 Xcode 项目中,需要在 ` Cartfile ` 中定义以下内容:
18
18
19
19
``` ogdl
20
- github "alibabacloud-sdk-swift/ice-20201109" "5.0.4 "
20
+ github "alibabacloud-sdk-swift/ice-20201109" "5.0.5 "
21
21
```
22
22
23
23
### Swift 包管理工具
@@ -26,7 +26,7 @@ github "alibabacloud-sdk-swift/ice-20201109" "5.0.4"
26
26
27
27
``` swift
28
28
dependencies: [
29
- .package (url : " https://github.com/alibabacloud-sdk-swift/ice-20201109.git" , from : " 5.0.4 " )
29
+ .package (url : " https://github.com/alibabacloud-sdk-swift/ice-20201109.git" , from : " 5.0.5 " )
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 ` AlibabacloudICE20201109 ` 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/ice-20201109" "5.0.4 "
20
+ github "alibabacloud-sdk-swift/ice-20201109" "5.0.5 "
21
21
```
22
22
23
23
### Swift Package Manager
@@ -26,7 +26,7 @@ To integrate `AlibabacloudICE20201109` into your Xcode project using [Swift Pack
26
26
27
27
``` swift
28
28
dependencies: [
29
- .package (url : " https://github.com/alibabacloud-sdk-swift/ice-20201109.git" , from : " 5.0.4 " )
29
+ .package (url : " https://github.com/alibabacloud-sdk-swift/ice-20201109.git" , from : " 5.0.5 " )
30
30
]
31
31
```
32
32
Original file line number Diff line number Diff line change @@ -7280,6 +7280,8 @@ public class BatchGetMediaInfosResponseBody : Tea.TeaModel {
7280
7280
}
7281
7281
}
7282
7282
public class MediaBasicInfo : Tea.TeaModel {
7283
+ public var biz: String?
7284
+
7283
7285
public var businessType: String?
7284
7286
7285
7287
public var category: String?
@@ -7330,6 +7332,9 @@ public class BatchGetMediaInfosResponseBody : Tea.TeaModel {
7330
7332
7331
7333
public override func toMap() -> [String : Any] {
7332
7334
var map = super.toMap()
7335
+ if self.biz != nil {
7336
+ map["Biz"] = self.biz!
7337
+ }
7333
7338
if self.businessType != nil {
7334
7339
map["BusinessType"] = self.businessType!
7335
7340
}
@@ -7388,6 +7393,9 @@ public class BatchGetMediaInfosResponseBody : Tea.TeaModel {
7388
7393
}
7389
7394
7390
7395
public override func fromMap(_ dict: [String: Any]) -> Void {
7396
+ if dict.keys.contains("Biz") {
7397
+ self.biz = dict["Biz"] as! String
7398
+ }
7391
7399
if dict.keys.contains("BusinessType") {
7392
7400
self.businessType = dict["BusinessType"] as! String
7393
7401
}
You can’t perform that action at this time.
0 commit comments