Skip to content

Commit 9e08be3

Browse files
committed
Generated java-async 2023-08-01 for AiMiaoBi.
1 parent d570c3b commit 9e08be3

File tree

3 files changed

+46
-1
lines changed

3 files changed

+46
-1
lines changed

aimiaobi-20230801/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-06-09 Version: 1.0.57
2+
- Generated java-async 2023-08-01 for AiMiaoBi.
3+
14
2025-06-05 Version: 1.0.56
25
- Generated java-async 2023-08-01 for AiMiaoBi.
36

aimiaobi-20230801/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-aimiaobi20230801</artifactId>
6-
<version>1.0.56</version>
6+
<version>1.0.57</version>
77
<packaging>jar</packaging>
88
<name>alibabacloud-aimiaobi20230801</name>
99
<description>Alibaba Cloud AiMiaoBi (20230801) Async SDK for Java

aimiaobi-20230801/src/main/java/com/aliyun/sdk/service/aimiaobi20230801/models/GetHotTopicBroadcastResponseBody.java

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -932,12 +932,18 @@ public static class DataData extends TeaModel {
932932
@com.aliyun.core.annotation.NameInMap("OutputToken")
933933
private Integer outputToken;
934934

935+
@com.aliyun.core.annotation.NameInMap("PubTime")
936+
private String pubTime;
937+
935938
@com.aliyun.core.annotation.NameInMap("Summary")
936939
private Summary summary;
937940

938941
@com.aliyun.core.annotation.NameInMap("TextSummary")
939942
private String textSummary;
940943

944+
@com.aliyun.core.annotation.NameInMap("Url")
945+
private String url;
946+
941947
private DataData(Builder builder) {
942948
this.category = builder.category;
943949
this.createTime = builder.createTime;
@@ -952,8 +958,10 @@ private DataData(Builder builder) {
952958
this.locations = builder.locations;
953959
this.news = builder.news;
954960
this.outputToken = builder.outputToken;
961+
this.pubTime = builder.pubTime;
955962
this.summary = builder.summary;
956963
this.textSummary = builder.textSummary;
964+
this.url = builder.url;
957965
}
958966

959967
public static Builder builder() {
@@ -1055,6 +1063,13 @@ public Integer getOutputToken() {
10551063
return this.outputToken;
10561064
}
10571065

1066+
/**
1067+
* @return pubTime
1068+
*/
1069+
public String getPubTime() {
1070+
return this.pubTime;
1071+
}
1072+
10581073
/**
10591074
* @return summary
10601075
*/
@@ -1069,6 +1084,13 @@ public String getTextSummary() {
10691084
return this.textSummary;
10701085
}
10711086

1087+
/**
1088+
* @return url
1089+
*/
1090+
public String getUrl() {
1091+
return this.url;
1092+
}
1093+
10721094
public static final class Builder {
10731095
private String category;
10741096
private String createTime;
@@ -1083,8 +1105,10 @@ public static final class Builder {
10831105
private java.util.List<String> locations;
10841106
private java.util.List<News> news;
10851107
private Integer outputToken;
1108+
private String pubTime;
10861109
private Summary summary;
10871110
private String textSummary;
1111+
private String url;
10881112

10891113
private Builder() {
10901114
}
@@ -1103,8 +1127,10 @@ private Builder(DataData model) {
11031127
this.locations = model.locations;
11041128
this.news = model.news;
11051129
this.outputToken = model.outputToken;
1130+
this.pubTime = model.pubTime;
11061131
this.summary = model.summary;
11071132
this.textSummary = model.textSummary;
1133+
this.url = model.url;
11081134
}
11091135

11101136
/**
@@ -1211,6 +1237,14 @@ public Builder outputToken(Integer outputToken) {
12111237
return this;
12121238
}
12131239

1240+
/**
1241+
* PubTime.
1242+
*/
1243+
public Builder pubTime(String pubTime) {
1244+
this.pubTime = pubTime;
1245+
return this;
1246+
}
1247+
12141248
/**
12151249
* Summary.
12161250
*/
@@ -1227,6 +1261,14 @@ public Builder textSummary(String textSummary) {
12271261
return this;
12281262
}
12291263

1264+
/**
1265+
* Url.
1266+
*/
1267+
public Builder url(String url) {
1268+
this.url = url;
1269+
return this;
1270+
}
1271+
12301272
public DataData build() {
12311273
return new DataData(this);
12321274
}

0 commit comments

Comments
 (0)