File tree Expand file tree Collapse file tree 4 files changed +13
-5
lines changed
Sources/AlibabacloudRtc20180111 Expand file tree Collapse file tree 4 files changed +13
-5
lines changed Original file line number Diff line number Diff line change 11Pod ::Spec . new do |spec |
22
33 spec . name = "AlibabacloudRtc20180111"
4- spec . version = "5.3.1 "
4+ spec . version = "5.3.2 "
55 spec . license = "Apache 2.0"
66 spec . summary = "Alibaba Cloud Real-Time Communication (20180111) SDK Library for Swift"
77 spec . homepage = "https://github.com/alibabacloud-sdk-swift/rtc-20180111"
Original file line number Diff line number Diff line change 1717要使用 [ Carthage] ( https://github.com/Carthage/Carthage ) 将 ` AlibabacloudRtc20180111 ` 集成到你的 Xcode 项目中,需要在 ` Cartfile ` 中定义以下内容:
1818
1919``` ogdl
20- github "alibabacloud-sdk-swift/rtc-20180111" "5.3.1 "
20+ github "alibabacloud-sdk-swift/rtc-20180111" "5.3.2 "
2121```
2222
2323### Swift 包管理工具
@@ -26,7 +26,7 @@ github "alibabacloud-sdk-swift/rtc-20180111" "5.3.1"
2626
2727``` swift
2828dependencies: [
29- .package (url : " https://github.com/alibabacloud-sdk-swift/rtc-20180111.git" , from : " 5.3.1 " )
29+ .package (url : " https://github.com/alibabacloud-sdk-swift/rtc-20180111.git" , from : " 5.3.2 " )
3030]
3131```
3232
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ English | [简体中文](README-CN.md)
1717To integrate ` AlibabacloudRtc20180111 ` into your Xcode project using [ Carthage] ( https://github.com/Carthage/Carthage ) , specify it in your ` Cartfile ` :
1818
1919``` ogdl
20- github "alibabacloud-sdk-swift/rtc-20180111" "5.3.1 "
20+ github "alibabacloud-sdk-swift/rtc-20180111" "5.3.2 "
2121```
2222
2323### Swift Package Manager
@@ -26,7 +26,7 @@ To integrate `AlibabacloudRtc20180111` into your Xcode project using [Swift Pack
2626
2727``` swift
2828dependencies: [
29- .package (url : " https://github.com/alibabacloud-sdk-swift/rtc-20180111.git" , from : " 5.3.1 " )
29+ .package (url : " https://github.com/alibabacloud-sdk-swift/rtc-20180111.git" , from : " 5.3.2 " )
3030]
3131```
3232
Original file line number Diff line number Diff line change @@ -32335,6 +32335,8 @@ public class StartCloudNoteRequest : Tea.TeaModel {
3233532335 }
3233632336 }
3233732337 }
32338+ public var asrCallback: Bool?
32339+
3233832340 public var enabled: Bool?
3233932341
3234032342 public var translation: StartCloudNoteRequest.RealtimeSubtitle.Translation?
@@ -32354,6 +32356,9 @@ public class StartCloudNoteRequest : Tea.TeaModel {
3235432356
3235532357 public override func toMap() -> [String : Any] {
3235632358 var map = super.toMap()
32359+ if self.asrCallback != nil {
32360+ map["AsrCallback"] = self.asrCallback!
32361+ }
3235732362 if self.enabled != nil {
3235832363 map["Enabled"] = self.enabled!
3235932364 }
@@ -32365,6 +32370,9 @@ public class StartCloudNoteRequest : Tea.TeaModel {
3236532370
3236632371 public override func fromMap(_ dict: [String: Any?]?) -> Void {
3236732372 guard let dict else { return }
32373+ if let value = dict["AsrCallback"] as? Bool {
32374+ self.asrCallback = value
32375+ }
3236832376 if let value = dict["Enabled"] as? Bool {
3236932377 self.enabled = value
3237032378 }
You can’t perform that action at this time.
0 commit comments