Skip to content

Commit 62e0680

Browse files
committed
Generated java-async 2024-06-03 for ContactCenterAI.
1 parent fb6be48 commit 62e0680

File tree

3 files changed

+27
-1
lines changed

3 files changed

+27
-1
lines changed

contactcenterai-20240603/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-05-27 Version: 3.0.18
2+
- Generated java-async 2024-06-03 for ContactCenterAI.
3+
14
2025-05-06 Version: 3.0.17
25
- Generated java-async 2024-06-03 for ContactCenterAI.
36

contactcenterai-20240603/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.aliyun</groupId>
55
<artifactId>alibabacloud-contactcenterai20240603</artifactId>
6-
<version>3.0.17</version>
6+
<version>3.0.18</version>
77
<packaging>jar</packaging>
88
<name>alibabacloud-contactcenterai20240603</name>
99
<description>Alibaba Cloud ContactCenterAI (20240603) Async SDK for Java

contactcenterai-20240603/src/main/java/com/aliyun/sdk/service/contactcenterai20240603/models/CreateTaskRequest.java

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@ public class CreateTaskRequest extends Request {
2929
@com.aliyun.core.annotation.NameInMap("regionId")
3030
private String regionId;
3131

32+
@com.aliyun.core.annotation.Body
33+
@com.aliyun.core.annotation.NameInMap("callBackUrl")
34+
private String callBackUrl;
35+
3236
@com.aliyun.core.annotation.Body
3337
@com.aliyun.core.annotation.NameInMap("categoryTags")
3438
private java.util.List<CategoryTags> categoryTags;
@@ -88,6 +92,7 @@ private CreateTaskRequest(Builder builder) {
8892
this.workspaceId = builder.workspaceId;
8993
this.appId = builder.appId;
9094
this.regionId = builder.regionId;
95+
this.callBackUrl = builder.callBackUrl;
9196
this.categoryTags = builder.categoryTags;
9297
this.customPrompt = builder.customPrompt;
9398
this.dialogue = builder.dialogue;
@@ -137,6 +142,13 @@ public String getRegionId() {
137142
return this.regionId;
138143
}
139144

145+
/**
146+
* @return callBackUrl
147+
*/
148+
public String getCallBackUrl() {
149+
return this.callBackUrl;
150+
}
151+
140152
/**
141153
* @return categoryTags
142154
*/
@@ -232,6 +244,7 @@ public static final class Builder extends Request.Builder<CreateTaskRequest, Bui
232244
private String workspaceId;
233245
private String appId;
234246
private String regionId;
247+
private String callBackUrl;
235248
private java.util.List<CategoryTags> categoryTags;
236249
private String customPrompt;
237250
private Dialogue dialogue;
@@ -255,6 +268,7 @@ private Builder(CreateTaskRequest request) {
255268
this.workspaceId = request.workspaceId;
256269
this.appId = request.appId;
257270
this.regionId = request.regionId;
271+
this.callBackUrl = request.callBackUrl;
258272
this.categoryTags = request.categoryTags;
259273
this.customPrompt = request.customPrompt;
260274
this.dialogue = request.dialogue;
@@ -297,6 +311,15 @@ public Builder regionId(String regionId) {
297311
return this;
298312
}
299313

314+
/**
315+
* callBackUrl.
316+
*/
317+
public Builder callBackUrl(String callBackUrl) {
318+
this.putBodyParameter("callBackUrl", callBackUrl);
319+
this.callBackUrl = callBackUrl;
320+
return this;
321+
}
322+
300323
/**
301324
* categoryTags.
302325
*/

0 commit comments

Comments
 (0)