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

com.aliyun.dingtalkindustry_1_0.models.SubmitTaskResponseBody 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 SubmitTaskResponseBody extends TeaModel {
    @NameInMap("tasks")
    public java.util.List tasks;

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

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

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

1001

*/ @NameInMap("id") public Long id; /** * example: *

8ef16170b6e24d8fb77b832d7603b835

*/ @NameInMap("taskId") public String taskId; public static SubmitTaskResponseBodyTasks build(java.util.Map map) throws Exception { SubmitTaskResponseBodyTasks self = new SubmitTaskResponseBodyTasks(); return TeaModel.build(map, self); } public SubmitTaskResponseBodyTasks setId(Long id) { this.id = id; return this; } public Long getId() { return this.id; } public SubmitTaskResponseBodyTasks setTaskId(String taskId) { this.taskId = taskId; return this; } public String getTaskId() { return this.taskId; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy