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

com.aliyun.dingtalkdrive_1_0.models.GetAsyncTaskInfoResponseBody Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class GetAsyncTaskInfoResponseBody extends TeaModel {
    /**
     * 

This parameter is required.

*

Use the UTC time format: yyyy-MM-ddTHH:mmZ

*/ @NameInMap("beginTime") public String beginTime; /** *

This parameter is required.

*

Use the UTC time format: yyyy-MM-ddTHH:mmZ

*/ @NameInMap("endTime") public String endTime; /** *

This parameter is required.

*/ @NameInMap("failed") public Integer failed; /** *

This parameter is required.

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

This parameter is required.

*/ @NameInMap("success") public Integer success; /** *

This parameter is required.

*/ @NameInMap("taskId") public String taskId; @NameInMap("total") public Integer total; public static GetAsyncTaskInfoResponseBody build(java.util.Map map) throws Exception { GetAsyncTaskInfoResponseBody self = new GetAsyncTaskInfoResponseBody(); return TeaModel.build(map, self); } public GetAsyncTaskInfoResponseBody setBeginTime(String beginTime) { this.beginTime = beginTime; return this; } public String getBeginTime() { return this.beginTime; } public GetAsyncTaskInfoResponseBody setEndTime(String endTime) { this.endTime = endTime; return this; } public String getEndTime() { return this.endTime; } public GetAsyncTaskInfoResponseBody setFailed(Integer failed) { this.failed = failed; return this; } public Integer getFailed() { return this.failed; } public GetAsyncTaskInfoResponseBody setStatus(String status) { this.status = status; return this; } public String getStatus() { return this.status; } public GetAsyncTaskInfoResponseBody setSuccess(Integer success) { this.success = success; return this; } public Integer getSuccess() { return this.success; } public GetAsyncTaskInfoResponseBody setTaskId(String taskId) { this.taskId = taskId; return this; } public String getTaskId() { return this.taskId; } public GetAsyncTaskInfoResponseBody setTotal(Integer total) { this.total = total; return this; } public Integer getTotal() { return this.total; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy