Skip to content

Commit 7722924

Browse files
committed
Update API BatchGetMediaInfos: add response parameters Body.MediaInfos.$.MediaBasicInfo.Biz.
1 parent d95a6a9 commit 7722924

File tree

4 files changed

+13
-5
lines changed

4 files changed

+13
-5
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.4"
4+
spec.version = "5.0.5"
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.4"
20+
github "alibabacloud-sdk-swift/ice-20201109" "5.0.5"
2121
```
2222

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

2727
```swift
2828
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")
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.4"
20+
github "alibabacloud-sdk-swift/ice-20201109" "5.0.5"
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.4")
29+
.package(url: "https://github.com/alibabacloud-sdk-swift/ice-20201109.git", from: "5.0.5")
3030
]
3131
```
3232

Sources/AlibabacloudICE20201109/Models.swift

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7280,6 +7280,8 @@ public class BatchGetMediaInfosResponseBody : Tea.TeaModel {
72807280
}
72817281
}
72827282
public class MediaBasicInfo : Tea.TeaModel {
7283+
public var biz: String?
7284+
72837285
public var businessType: String?
72847286

72857287
public var category: String?
@@ -7330,6 +7332,9 @@ public class BatchGetMediaInfosResponseBody : Tea.TeaModel {
73307332

73317333
public override func toMap() -> [String : Any] {
73327334
var map = super.toMap()
7335+
if self.biz != nil {
7336+
map["Biz"] = self.biz!
7337+
}
73337338
if self.businessType != nil {
73347339
map["BusinessType"] = self.businessType!
73357340
}
@@ -7388,6 +7393,9 @@ public class BatchGetMediaInfosResponseBody : Tea.TeaModel {
73887393
}
73897394

73907395
public override func fromMap(_ dict: [String: Any]) -> Void {
7396+
if dict.keys.contains("Biz") {
7397+
self.biz = dict["Biz"] as! String
7398+
}
73917399
if dict.keys.contains("BusinessType") {
73927400
self.businessType = dict["BusinessType"] as! String
73937401
}

0 commit comments

Comments
 (0)