Skip to content

Commit 46cce57

Browse files
committed
Generated java-async 2023-08-01 for AiMiaoBi.
1 parent 59007c1 commit 46cce57

File tree

5 files changed

+387
-1
lines changed

5 files changed

+387
-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-05-12 Version: 1.0.47
2+
- Generated java-async 2023-08-01 for AiMiaoBi.
3+
14
2025-05-08 Version: 1.0.46
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.46</version>
6+
<version>1.0.47</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/ListGeneratedContentsRequest.java

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,10 @@ public class ListGeneratedContentsRequest extends Request {
3434
@com.aliyun.core.annotation.NameInMap("Current")
3535
private Integer current;
3636

37+
@com.aliyun.core.annotation.Body
38+
@com.aliyun.core.annotation.NameInMap("DataType")
39+
private String dataType;
40+
3741
@com.aliyun.core.annotation.Body
3842
@com.aliyun.core.annotation.NameInMap("EndTime")
3943
private String endTime;
@@ -64,6 +68,7 @@ private ListGeneratedContentsRequest(Builder builder) {
6468
this.agentKey = builder.agentKey;
6569
this.contentDomain = builder.contentDomain;
6670
this.current = builder.current;
71+
this.dataType = builder.dataType;
6772
this.endTime = builder.endTime;
6873
this.query = builder.query;
6974
this.size = builder.size;
@@ -113,6 +118,13 @@ public Integer getCurrent() {
113118
return this.current;
114119
}
115120

121+
/**
122+
* @return dataType
123+
*/
124+
public String getDataType() {
125+
return this.dataType;
126+
}
127+
116128
/**
117129
* @return endTime
118130
*/
@@ -160,6 +172,7 @@ public static final class Builder extends Request.Builder<ListGeneratedContentsR
160172
private String agentKey;
161173
private String contentDomain;
162174
private Integer current;
175+
private String dataType;
163176
private String endTime;
164177
private String query;
165178
private Integer size;
@@ -177,6 +190,7 @@ private Builder(ListGeneratedContentsRequest request) {
177190
this.agentKey = request.agentKey;
178191
this.contentDomain = request.contentDomain;
179192
this.current = request.current;
193+
this.dataType = request.dataType;
180194
this.endTime = request.endTime;
181195
this.query = request.query;
182196
this.size = request.size;
@@ -224,6 +238,15 @@ public Builder current(Integer current) {
224238
return this;
225239
}
226240

241+
/**
242+
* DataType.
243+
*/
244+
public Builder dataType(String dataType) {
245+
this.putBodyParameter("DataType", dataType);
246+
this.dataType = dataType;
247+
return this;
248+
}
249+
227250
/**
228251
* EndTime.
229252
*/

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

Lines changed: 159 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,123 @@ public ListGeneratedContentsResponseBody build() {
235235

236236
}
237237

238+
/**
239+
*
240+
* {@link ListGeneratedContentsResponseBody} extends {@link TeaModel}
241+
*
242+
* <p>ListGeneratedContentsResponseBody</p>
243+
*/
244+
public static class FileAttr extends TeaModel {
245+
@com.aliyun.core.annotation.NameInMap("FileName")
246+
private String fileName;
247+
248+
@com.aliyun.core.annotation.NameInMap("Height")
249+
private Integer height;
250+
251+
@com.aliyun.core.annotation.NameInMap("TmpUrl")
252+
private String tmpUrl;
253+
254+
@com.aliyun.core.annotation.NameInMap("Width")
255+
private Integer width;
256+
257+
private FileAttr(Builder builder) {
258+
this.fileName = builder.fileName;
259+
this.height = builder.height;
260+
this.tmpUrl = builder.tmpUrl;
261+
this.width = builder.width;
262+
}
263+
264+
public static Builder builder() {
265+
return new Builder();
266+
}
267+
268+
public static FileAttr create() {
269+
return builder().build();
270+
}
271+
272+
/**
273+
* @return fileName
274+
*/
275+
public String getFileName() {
276+
return this.fileName;
277+
}
278+
279+
/**
280+
* @return height
281+
*/
282+
public Integer getHeight() {
283+
return this.height;
284+
}
285+
286+
/**
287+
* @return tmpUrl
288+
*/
289+
public String getTmpUrl() {
290+
return this.tmpUrl;
291+
}
292+
293+
/**
294+
* @return width
295+
*/
296+
public Integer getWidth() {
297+
return this.width;
298+
}
299+
300+
public static final class Builder {
301+
private String fileName;
302+
private Integer height;
303+
private String tmpUrl;
304+
private Integer width;
305+
306+
private Builder() {
307+
}
308+
309+
private Builder(FileAttr model) {
310+
this.fileName = model.fileName;
311+
this.height = model.height;
312+
this.tmpUrl = model.tmpUrl;
313+
this.width = model.width;
314+
}
315+
316+
/**
317+
* FileName.
318+
*/
319+
public Builder fileName(String fileName) {
320+
this.fileName = fileName;
321+
return this;
322+
}
323+
324+
/**
325+
* Height.
326+
*/
327+
public Builder height(Integer height) {
328+
this.height = height;
329+
return this;
330+
}
331+
332+
/**
333+
* TmpUrl.
334+
*/
335+
public Builder tmpUrl(String tmpUrl) {
336+
this.tmpUrl = tmpUrl;
337+
return this;
338+
}
339+
340+
/**
341+
* Width.
342+
*/
343+
public Builder width(Integer width) {
344+
this.width = width;
345+
return this;
346+
}
347+
348+
public FileAttr build() {
349+
return new FileAttr(this);
350+
}
351+
352+
}
353+
354+
}
238355
/**
239356
*
240357
* {@link ListGeneratedContentsResponseBody} extends {@link TeaModel}
@@ -260,6 +377,12 @@ public static class Data extends TeaModel {
260377
@com.aliyun.core.annotation.NameInMap("DeviceId")
261378
private String deviceId;
262379

380+
@com.aliyun.core.annotation.NameInMap("FileAttr")
381+
private FileAttr fileAttr;
382+
383+
@com.aliyun.core.annotation.NameInMap("FileKey")
384+
private String fileKey;
385+
263386
@com.aliyun.core.annotation.NameInMap("Id")
264387
private Long id;
265388

@@ -294,6 +417,8 @@ private Data(Builder builder) {
294417
this.createTime = builder.createTime;
295418
this.createUser = builder.createUser;
296419
this.deviceId = builder.deviceId;
420+
this.fileAttr = builder.fileAttr;
421+
this.fileKey = builder.fileKey;
297422
this.id = builder.id;
298423
this.keywordList = builder.keywordList;
299424
this.keywords = builder.keywords;
@@ -355,6 +480,20 @@ public String getDeviceId() {
355480
return this.deviceId;
356481
}
357482

483+
/**
484+
* @return fileAttr
485+
*/
486+
public FileAttr getFileAttr() {
487+
return this.fileAttr;
488+
}
489+
490+
/**
491+
* @return fileKey
492+
*/
493+
public String getFileKey() {
494+
return this.fileKey;
495+
}
496+
358497
/**
359498
* @return id
360499
*/
@@ -425,6 +564,8 @@ public static final class Builder {
425564
private String createTime;
426565
private String createUser;
427566
private String deviceId;
567+
private FileAttr fileAttr;
568+
private String fileKey;
428569
private Long id;
429570
private java.util.List<String> keywordList;
430571
private String keywords;
@@ -445,6 +586,8 @@ private Builder(Data model) {
445586
this.createTime = model.createTime;
446587
this.createUser = model.createUser;
447588
this.deviceId = model.deviceId;
589+
this.fileAttr = model.fileAttr;
590+
this.fileKey = model.fileKey;
448591
this.id = model.id;
449592
this.keywordList = model.keywordList;
450593
this.keywords = model.keywords;
@@ -504,6 +647,22 @@ public Builder deviceId(String deviceId) {
504647
return this;
505648
}
506649

650+
/**
651+
* FileAttr.
652+
*/
653+
public Builder fileAttr(FileAttr fileAttr) {
654+
this.fileAttr = fileAttr;
655+
return this;
656+
}
657+
658+
/**
659+
* FileKey.
660+
*/
661+
public Builder fileKey(String fileKey) {
662+
this.fileKey = fileKey;
663+
return this;
664+
}
665+
507666
/**
508667
* Id.
509668
*/

0 commit comments

Comments
 (0)