Skip to content

Commit 940ae84

Browse files
committed
Generated java-async 2021-12-7 for cd.
1 parent 89381cb commit 940ae84

File tree

3 files changed

+24
-1
lines changed

3 files changed

+24
-1
lines changed

cd-2021127/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-02-07 Version: 1.0.2
2+
- Generated java-async 2021-12-7 for cd.
3+
14
2025-02-06 Version: 1.0.1
25
- Generated java-async 2021-12-7 for cd.
36

cd-2021127/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-cd2021127</artifactId>
6-
<version>1.0.1</version>
6+
<version>1.0.2</version>
77
<packaging>jar</packaging>
88
<name>alibabacloud-cd2021127</name>
99
<description>Alibaba Cloud cd (2021127) Async SDK for Java

cd-2021127/src/main/java/com/aliyun/sdk/service/cd2021127/models/BaiLianSseChatRequest.java

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -330,8 +330,12 @@ public static class Parameters extends TeaModel {
330330
@com.aliyun.core.annotation.NameInMap("Incremental_output")
331331
private Boolean incrementalOutput;
332332

333+
@com.aliyun.core.annotation.NameInMap("vendorId")
334+
private String vendorId;
335+
333336
private Parameters(Builder builder) {
334337
this.incrementalOutput = builder.incrementalOutput;
338+
this.vendorId = builder.vendorId;
335339
}
336340

337341
public static Builder builder() {
@@ -349,8 +353,16 @@ public Boolean getIncrementalOutput() {
349353
return this.incrementalOutput;
350354
}
351355

356+
/**
357+
* @return vendorId
358+
*/
359+
public String getVendorId() {
360+
return this.vendorId;
361+
}
362+
352363
public static final class Builder {
353364
private Boolean incrementalOutput;
365+
private String vendorId;
354366

355367
/**
356368
* Incremental_output.
@@ -360,6 +372,14 @@ public Builder incrementalOutput(Boolean incrementalOutput) {
360372
return this;
361373
}
362374

375+
/**
376+
* vendorId.
377+
*/
378+
public Builder vendorId(String vendorId) {
379+
this.vendorId = vendorId;
380+
return this;
381+
}
382+
363383
public Parameters build() {
364384
return new Parameters(this);
365385
}

0 commit comments

Comments
 (0)