All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkindustry_1_0.models.BatchGetTaskResultResponseBody Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkindustry_1_0.models;

import com.aliyun.tea.*;

public class BatchGetTaskResultResponseBody extends TeaModel {
    @NameInMap("tasks")
    public java.util.List tasks;

    public static BatchGetTaskResultResponseBody build(java.util.Map map) throws Exception {
        BatchGetTaskResultResponseBody self = new BatchGetTaskResultResponseBody();
        return TeaModel.build(map, self);
    }

    public BatchGetTaskResultResponseBody setTasks(java.util.List tasks) {
        this.tasks = tasks;
        return this;
    }
    public java.util.List getTasks() {
        return this.tasks;
    }

    public static class BatchGetTaskResultResponseBodyTasksResultItems extends TeaModel {
        /**
         * example:
         * 

主持人有问好,并得到积极回应

*/ @NameInMap("info") public String info; /** * example: *

是否有问好

*/ @NameInMap("name") public String name; /** * example: *

10

*/ @NameInMap("point") public Long point; public static BatchGetTaskResultResponseBodyTasksResultItems build(java.util.Map map) throws Exception { BatchGetTaskResultResponseBodyTasksResultItems self = new BatchGetTaskResultResponseBodyTasksResultItems(); return TeaModel.build(map, self); } public BatchGetTaskResultResponseBodyTasksResultItems setInfo(String info) { this.info = info; return this; } public String getInfo() { return this.info; } public BatchGetTaskResultResponseBodyTasksResultItems setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public BatchGetTaskResultResponseBodyTasksResultItems setPoint(Long point) { this.point = point; return this; } public Long getPoint() { return this.point; } } public static class BatchGetTaskResultResponseBodyTasksResult extends TeaModel { /** * example: *

https://industry-ai-prod.oss-cn-zhangjiakou.aliyuncs.com/4beae5155406457291fcbdd76c4e8da8.txt

*/ @NameInMap("audioText") public String audioText; /** * example: *

2024-05-14

*/ @NameInMap("date") public String date; /** * example: *

xxx项目

*/ @NameInMap("desc") public String desc; /** * example: *

1001

*/ @NameInMap("id") public Long id; @NameInMap("items") public java.util.List items; /** * example: *

xxx项目会议

*/ @NameInMap("name") public String name; /** * example: *

100

*/ @NameInMap("total") public Long total; public static BatchGetTaskResultResponseBodyTasksResult build(java.util.Map map) throws Exception { BatchGetTaskResultResponseBodyTasksResult self = new BatchGetTaskResultResponseBodyTasksResult(); return TeaModel.build(map, self); } public BatchGetTaskResultResponseBodyTasksResult setAudioText(String audioText) { this.audioText = audioText; return this; } public String getAudioText() { return this.audioText; } public BatchGetTaskResultResponseBodyTasksResult setDate(String date) { this.date = date; return this; } public String getDate() { return this.date; } public BatchGetTaskResultResponseBodyTasksResult setDesc(String desc) { this.desc = desc; return this; } public String getDesc() { return this.desc; } public BatchGetTaskResultResponseBodyTasksResult setId(Long id) { this.id = id; return this; } public Long getId() { return this.id; } public BatchGetTaskResultResponseBodyTasksResult setItems(java.util.List items) { this.items = items; return this; } public java.util.List getItems() { return this.items; } public BatchGetTaskResultResponseBodyTasksResult setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public BatchGetTaskResultResponseBodyTasksResult setTotal(Long total) { this.total = total; return this; } public Long getTotal() { return this.total; } } public static class BatchGetTaskResultResponseBodyTasks extends TeaModel { @NameInMap("result") public BatchGetTaskResultResponseBodyTasksResult result; /** * example: *

COMPLETED

*/ @NameInMap("status") public String status; /** * example: *

4beae5155406457291fcbdd76c4e8da8

*/ @NameInMap("taskId") public String taskId; public static BatchGetTaskResultResponseBodyTasks build(java.util.Map map) throws Exception { BatchGetTaskResultResponseBodyTasks self = new BatchGetTaskResultResponseBodyTasks(); return TeaModel.build(map, self); } public BatchGetTaskResultResponseBodyTasks setResult(BatchGetTaskResultResponseBodyTasksResult result) { this.result = result; return this; } public BatchGetTaskResultResponseBodyTasksResult getResult() { return this.result; } public BatchGetTaskResultResponseBodyTasks setStatus(String status) { this.status = status; return this; } public String getStatus() { return this.status; } public BatchGetTaskResultResponseBodyTasks setTaskId(String taskId) { this.taskId = taskId; return this; } public String getTaskId() { return this.taskId; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy