
com.aliyun.dingtalkstorage_1_0.models.DeleteDentryResponseBody Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkstorage_1_0.models;
import com.aliyun.tea.*;
public class DeleteDentryResponseBody extends TeaModel {
/**
* example:
* true
*/
@NameInMap("async")
public Boolean async;
/**
* example:
* task_id
*/
@NameInMap("taskId")
public String taskId;
public static DeleteDentryResponseBody build(java.util.Map map) throws Exception {
DeleteDentryResponseBody self = new DeleteDentryResponseBody();
return TeaModel.build(map, self);
}
public DeleteDentryResponseBody setAsync(Boolean async) {
this.async = async;
return this;
}
public Boolean getAsync() {
return this.async;
}
public DeleteDentryResponseBody setTaskId(String taskId) {
this.taskId = taskId;
return this;
}
public String getTaskId() {
return this.taskId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy