Skip to content

Commit

Permalink
Update API ListSkillGroupSummaryReportsSinceMidnight: update response…
Browse files Browse the repository at this point in the history
… param.
  • Loading branch information
sdk-team committed May 17, 2024
1 parent 0f12af7 commit b1ef986
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 5 deletions.
2 changes: 1 addition & 1 deletion AlibabacloudCCC20200701.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |spec|

spec.name = "AlibabacloudCCC20200701"
spec.version = "2.16.0"
spec.version = "2.16.1"
spec.license = "Apache 2.0"
spec.summary = "Alibaba Cloud cloud call center (20200701) SDK Library for Swift"
spec.homepage = "https://github.com/alibabacloud-sdk-swift/ccc-20200701"
Expand Down
4 changes: 2 additions & 2 deletions README-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
要使用 [Carthage](https://github.com/Carthage/Carthage)`AlibabacloudCCC20200701` 集成到你的 Xcode 项目中,需要在 `Cartfile` 中定义以下内容:

```ogdl
github "alibabacloud-sdk-swift/ccc-20200701" "2.16.0"
github "alibabacloud-sdk-swift/ccc-20200701" "2.16.1"
```

### Swift 包管理工具
Expand All @@ -26,7 +26,7 @@ github "alibabacloud-sdk-swift/ccc-20200701" "2.16.0"

```swift
dependencies: [
.package(url: "https://github.com/alibabacloud-sdk-swift/ccc-20200701.git", from: "2.16.0")
.package(url: "https://github.com/alibabacloud-sdk-swift/ccc-20200701.git", from: "2.16.1")
]
```

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ English | [简体中文](README-CN.md)
To integrate `AlibabacloudCCC20200701` into your Xcode project using [Carthage](https://github.com/Carthage/Carthage), specify it in your `Cartfile`:

```ogdl
github "alibabacloud-sdk-swift/ccc-20200701" "2.16.0"
github "alibabacloud-sdk-swift/ccc-20200701" "2.16.1"
```

### Swift Package Manager
Expand All @@ -26,7 +26,7 @@ To integrate `AlibabacloudCCC20200701` into your Xcode project using [Swift Pack

```swift
dependencies: [
.package(url: "https://github.com/alibabacloud-sdk-swift/ccc-20200701.git", from: "2.16.0")
.package(url: "https://github.com/alibabacloud-sdk-swift/ccc-20200701.git", from: "2.16.1")
]
```

Expand Down
16 changes: 16 additions & 0 deletions Sources/AlibabacloudCCC20200701/Models.swift
Original file line number Diff line number Diff line change
Expand Up @@ -49488,12 +49488,16 @@ public class ListSkillGroupSummaryReportsSinceMidnightResponseBody : Tea.TeaMode

public var callsOffered: Int64?

public var callsQueuingTimeout: Int64?

public var callsServiceLevel10: Int64?

public var callsServiceLevel20: Int64?

public var callsServiceLevel30: Int64?

public var callsTimeout: Int64?

public var giveUpByAgentOfQueueCount: Int64?

public var handleRate: Double?
Expand Down Expand Up @@ -49573,6 +49577,9 @@ public class ListSkillGroupSummaryReportsSinceMidnightResponseBody : Tea.TeaMode
if self.callsOffered != nil {
map["CallsOffered"] = self.callsOffered!
}
if self.callsQueuingTimeout != nil {
map["CallsQueuingTimeout"] = self.callsQueuingTimeout!
}
if self.callsServiceLevel10 != nil {
map["CallsServiceLevel10"] = self.callsServiceLevel10!
}
Expand All @@ -49582,6 +49589,9 @@ public class ListSkillGroupSummaryReportsSinceMidnightResponseBody : Tea.TeaMode
if self.callsServiceLevel30 != nil {
map["CallsServiceLevel30"] = self.callsServiceLevel30!
}
if self.callsTimeout != nil {
map["CallsTimeout"] = self.callsTimeout!
}
if self.giveUpByAgentOfQueueCount != nil {
map["GiveUpByAgentOfQueueCount"] = self.giveUpByAgentOfQueueCount!
}
Expand Down Expand Up @@ -49667,6 +49677,9 @@ public class ListSkillGroupSummaryReportsSinceMidnightResponseBody : Tea.TeaMode
if dict.keys.contains("CallsOffered") && dict["CallsOffered"] != nil {
self.callsOffered = dict["CallsOffered"] as! Int64
}
if dict.keys.contains("CallsQueuingTimeout") && dict["CallsQueuingTimeout"] != nil {
self.callsQueuingTimeout = dict["CallsQueuingTimeout"] as! Int64
}
if dict.keys.contains("CallsServiceLevel10") && dict["CallsServiceLevel10"] != nil {
self.callsServiceLevel10 = dict["CallsServiceLevel10"] as! Int64
}
Expand All @@ -49676,6 +49689,9 @@ public class ListSkillGroupSummaryReportsSinceMidnightResponseBody : Tea.TeaMode
if dict.keys.contains("CallsServiceLevel30") && dict["CallsServiceLevel30"] != nil {
self.callsServiceLevel30 = dict["CallsServiceLevel30"] as! Int64
}
if dict.keys.contains("CallsTimeout") && dict["CallsTimeout"] != nil {
self.callsTimeout = dict["CallsTimeout"] as! Int64
}
if dict.keys.contains("GiveUpByAgentOfQueueCount") && dict["GiveUpByAgentOfQueueCount"] != nil {
self.giveUpByAgentOfQueueCount = dict["GiveUpByAgentOfQueueCount"] as! Int64
}
Expand Down

0 comments on commit b1ef986

Please sign in to comment.