Skip to content

Commit 6bd107a

Browse files
committed
Generated java-async 2018-01-11 for rtc.
1 parent 5c596e3 commit 6bd107a

File tree

3 files changed

+28
-1
lines changed

3 files changed

+28
-1
lines changed

rtc-20180111/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-11-19 Version: 5.0.15
2+
- Generated java-async 2018-01-11 for rtc.
3+
14
2025-11-06 Version: 5.0.14
25
- Generated java-async 2018-01-11 for rtc.
36

rtc-20180111/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-rtc20180111</artifactId>
6-
<version>5.0.14</version>
6+
<version>5.0.15</version>
77
<packaging>jar</packaging>
88
<name>alibabacloud-rtc20180111</name>
99
<description>Alibaba Cloud rtc (20180111) Async SDK for Java

rtc-20180111/src/main/java/com/aliyun/sdk/service/rtc20180111/models/RtcSipInviteMemberRequest.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,11 @@ public class RtcSipInviteMemberRequest extends Request {
7777
@com.aliyun.core.annotation.NameInMap("SipUserPassword")
7878
private String sipUserPassword;
7979

80+
@com.aliyun.core.annotation.Query
81+
@com.aliyun.core.annotation.NameInMap("TaskId")
82+
@com.aliyun.core.annotation.Validation(maxLength = 100)
83+
private String taskId;
84+
8085
@com.aliyun.core.annotation.Query
8186
@com.aliyun.core.annotation.NameInMap("Uid")
8287
@com.aliyun.core.annotation.Validation(required = true)
@@ -97,6 +102,7 @@ private RtcSipInviteMemberRequest(Builder builder) {
97102
this.sipUserAgent = builder.sipUserAgent;
98103
this.sipUserId = builder.sipUserId;
99104
this.sipUserPassword = builder.sipUserPassword;
105+
this.taskId = builder.taskId;
100106
this.uid = builder.uid;
101107
}
102108

@@ -204,6 +210,13 @@ public String getSipUserPassword() {
204210
return this.sipUserPassword;
205211
}
206212

213+
/**
214+
* @return taskId
215+
*/
216+
public String getTaskId() {
217+
return this.taskId;
218+
}
219+
207220
/**
208221
* @return uid
209222
*/
@@ -225,6 +238,7 @@ public static final class Builder extends Request.Builder<RtcSipInviteMemberRequ
225238
private String sipUserAgent;
226239
private String sipUserId;
227240
private String sipUserPassword;
241+
private String taskId;
228242
private String uid;
229243

230244
private Builder() {
@@ -246,6 +260,7 @@ private Builder(RtcSipInviteMemberRequest request) {
246260
this.sipUserAgent = request.sipUserAgent;
247261
this.sipUserId = request.sipUserId;
248262
this.sipUserPassword = request.sipUserPassword;
263+
this.taskId = request.taskId;
249264
this.uid = request.uid;
250265
}
251266

@@ -387,6 +402,15 @@ public Builder sipUserPassword(String sipUserPassword) {
387402
return this;
388403
}
389404

405+
/**
406+
* TaskId.
407+
*/
408+
public Builder taskId(String taskId) {
409+
this.putQueryParameter("TaskId", taskId);
410+
this.taskId = taskId;
411+
return this;
412+
}
413+
390414
/**
391415
* <p>This parameter is required.</p>
392416
*

0 commit comments

Comments
 (0)