Skip to content

Commit

Permalink
Update API GetCampaign: update response param.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed Jun 6, 2024
1 parent 2ec12d9 commit ba1ae97
Show file tree
Hide file tree
Showing 4 changed files with 37 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.17.1"
spec.version = "2.17.2"
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.17.1"
github "alibabacloud-sdk-swift/ccc-20200701" "2.17.2"
```

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

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

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.17.1"
github "alibabacloud-sdk-swift/ccc-20200701" "2.17.2"
```

### 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.17.1")
.package(url: "https://github.com/alibabacloud-sdk-swift/ccc-20200701.git", from: "2.17.2")
]
```

Expand Down
32 changes: 32 additions & 0 deletions Sources/AlibabacloudCCC20200701/Models.swift
Original file line number Diff line number Diff line change
Expand Up @@ -14000,6 +14000,8 @@ public class GetCampaignResponseBody : Tea.TeaModel {

public var completionRate: Double?

public var contactFlowId: String?

public var maxAttemptCount: Int64?

public var minAttemptInterval: Int64?
Expand Down Expand Up @@ -14067,6 +14069,9 @@ public class GetCampaignResponseBody : Tea.TeaModel {
if self.completionRate != nil {
map["CompletionRate"] = self.completionRate!
}
if self.contactFlowId != nil {
map["ContactFlowId"] = self.contactFlowId!
}
if self.maxAttemptCount != nil {
map["MaxAttemptCount"] = self.maxAttemptCount!
}
Expand Down Expand Up @@ -14137,6 +14142,9 @@ public class GetCampaignResponseBody : Tea.TeaModel {
if dict.keys.contains("CompletionRate") {
self.completionRate = dict["CompletionRate"] as! Double
}
if dict.keys.contains("ContactFlowId") {
self.contactFlowId = dict["ContactFlowId"] as! String
}
if dict.keys.contains("MaxAttemptCount") {
self.maxAttemptCount = dict["MaxAttemptCount"] as! Int64
}
Expand Down Expand Up @@ -29686,6 +29694,8 @@ public class ListCampaignsResponseBody : Tea.TeaModel {

public var completionRate: Double?

public var contactFlowId: String?

public var maxAttemptCount: Int64?

public var minAttemptInterval: Int64?
Expand Down Expand Up @@ -29745,6 +29755,9 @@ public class ListCampaignsResponseBody : Tea.TeaModel {
if self.completionRate != nil {
map["CompletionRate"] = self.completionRate!
}
if self.contactFlowId != nil {
map["ContactFlowId"] = self.contactFlowId!
}
if self.maxAttemptCount != nil {
map["MaxAttemptCount"] = self.maxAttemptCount!
}
Expand Down Expand Up @@ -29806,6 +29819,9 @@ public class ListCampaignsResponseBody : Tea.TeaModel {
if dict.keys.contains("CompletionRate") {
self.completionRate = dict["CompletionRate"] as! Double
}
if dict.keys.contains("ContactFlowId") {
self.contactFlowId = dict["ContactFlowId"] as! String
}
if dict.keys.contains("MaxAttemptCount") {
self.maxAttemptCount = dict["MaxAttemptCount"] as! Int64
}
Expand Down Expand Up @@ -49653,6 +49669,8 @@ public class ListSkillGroupSummaryReportsSinceMidnightResponseBody : Tea.TeaMode

public var averageWorkTime: Int64?

public var callsAbandoned: Int64?

public var callsAttendedTransferOut: Int64?

public var callsBlindTransferOut: Int64?
Expand All @@ -49661,6 +49679,8 @@ public class ListSkillGroupSummaryReportsSinceMidnightResponseBody : Tea.TeaMode

public var callsOffered: Int64?

public var callsOverflow: String?

public var callsQueuingCanceled: String?

public var callsQueuingFailure: String?
Expand Down Expand Up @@ -49744,6 +49764,9 @@ public class ListSkillGroupSummaryReportsSinceMidnightResponseBody : Tea.TeaMode
if self.averageWorkTime != nil {
map["AverageWorkTime"] = self.averageWorkTime!
}
if self.callsAbandoned != nil {
map["CallsAbandoned"] = self.callsAbandoned!
}
if self.callsAttendedTransferOut != nil {
map["CallsAttendedTransferOut"] = self.callsAttendedTransferOut!
}
Expand All @@ -49756,6 +49779,9 @@ public class ListSkillGroupSummaryReportsSinceMidnightResponseBody : Tea.TeaMode
if self.callsOffered != nil {
map["CallsOffered"] = self.callsOffered!
}
if self.callsOverflow != nil {
map["CallsOverflow"] = self.callsOverflow!
}
if self.callsQueuingCanceled != nil {
map["CallsQueuingCanceled"] = self.callsQueuingCanceled!
}
Expand Down Expand Up @@ -49853,6 +49879,9 @@ public class ListSkillGroupSummaryReportsSinceMidnightResponseBody : Tea.TeaMode
if dict.keys.contains("AverageWorkTime") {
self.averageWorkTime = dict["AverageWorkTime"] as! Int64
}
if dict.keys.contains("CallsAbandoned") {
self.callsAbandoned = dict["CallsAbandoned"] as! Int64
}
if dict.keys.contains("CallsAttendedTransferOut") {
self.callsAttendedTransferOut = dict["CallsAttendedTransferOut"] as! Int64
}
Expand All @@ -49865,6 +49894,9 @@ public class ListSkillGroupSummaryReportsSinceMidnightResponseBody : Tea.TeaMode
if dict.keys.contains("CallsOffered") {
self.callsOffered = dict["CallsOffered"] as! Int64
}
if dict.keys.contains("CallsOverflow") {
self.callsOverflow = dict["CallsOverflow"] as! String
}
if dict.keys.contains("CallsQueuingCanceled") {
self.callsQueuingCanceled = dict["CallsQueuingCanceled"] as! String
}
Expand Down

0 comments on commit ba1ae97

Please sign in to comment.