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

com.aliyun.pds20220301.models.GetTaskStatusRequest Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class GetTaskStatusRequest extends TeaModel {
    /**
     * 

The drive ID.

*/ @NameInMap("drive_id") public String driveId; /** *

The ID of the task.

*/ @NameInMap("task_id") public String taskId; public static GetTaskStatusRequest build(java.util.Map map) throws Exception { GetTaskStatusRequest self = new GetTaskStatusRequest(); return TeaModel.build(map, self); } public GetTaskStatusRequest setDriveId(String driveId) { this.driveId = driveId; return this; } public String getDriveId() { return this.driveId; } public GetTaskStatusRequest setTaskId(String taskId) { this.taskId = taskId; return this; } public String getTaskId() { return this.taskId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy