com.aliyun.dingtalkstorage_1_0.models.DeleteDentryResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// 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;
}
}