com.aliyun.dingtalkworkflow_1_0.models.PremiumDelDirRequest 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 PremiumDelDirRequest extends TeaModel {
/**
* example:
* oaDirIdxxx
*/
@NameInMap("dirId")
public String dirId;
/**
* This parameter is required.
*
* example:
* user001
*/
@NameInMap("operateUserId")
public String operateUserId;
public static PremiumDelDirRequest build(java.util.Map map) throws Exception {
PremiumDelDirRequest self = new PremiumDelDirRequest();
return TeaModel.build(map, self);
}
public PremiumDelDirRequest setDirId(String dirId) {
this.dirId = dirId;
return this;
}
public String getDirId() {
return this.dirId;
}
public PremiumDelDirRequest setOperateUserId(String operateUserId) {
this.operateUserId = operateUserId;
return this;
}
public String getOperateUserId() {
return this.operateUserId;
}
}