@@ -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