![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkworkflow_1_0.models.DeleteDirRequest 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.dingtalkworkflow_1_0.models;
import com.aliyun.tea.*;
public class DeleteDirRequest extends TeaModel {
/**
* example:
* oaDirIdxxx
*/
@NameInMap("dirId")
public String dirId;
/**
* This parameter is required.
*
* example:
* user001
*/
@NameInMap("operateUserId")
public String operateUserId;
public static DeleteDirRequest build(java.util.Map map) throws Exception {
DeleteDirRequest self = new DeleteDirRequest();
return TeaModel.build(map, self);
}
public DeleteDirRequest setDirId(String dirId) {
this.dirId = dirId;
return this;
}
public String getDirId() {
return this.dirId;
}
public DeleteDirRequest setOperateUserId(String operateUserId) {
this.operateUserId = operateUserId;
return this;
}
public String getOperateUserId() {
return this.operateUserId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy