com.aliyun.dingtalkcontact_1_0.models.BatchApproveUnionApplyRequest 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.dingtalkcontact_1_0.models;
import com.aliyun.tea.*;
public class BatchApproveUnionApplyRequest extends TeaModel {
@NameInMap("body")
public java.util.List body;
public static BatchApproveUnionApplyRequest build(java.util.Map map) throws Exception {
BatchApproveUnionApplyRequest self = new BatchApproveUnionApplyRequest();
return TeaModel.build(map, self);
}
public BatchApproveUnionApplyRequest setBody(java.util.List body) {
this.body = body;
return this;
}
public java.util.List getBody() {
return this.body;
}
public static class BatchApproveUnionApplyRequestBody extends TeaModel {
// branchCorpId
@NameInMap("branchCorpId")
public String branchCorpId;
// linkDeptId
@NameInMap("linkDeptId")
public Long linkDeptId;
// unionRootName
@NameInMap("unionRootName")
public String unionRootName;
public static BatchApproveUnionApplyRequestBody build(java.util.Map map) throws Exception {
BatchApproveUnionApplyRequestBody self = new BatchApproveUnionApplyRequestBody();
return TeaModel.build(map, self);
}
public BatchApproveUnionApplyRequestBody setBranchCorpId(String branchCorpId) {
this.branchCorpId = branchCorpId;
return this;
}
public String getBranchCorpId() {
return this.branchCorpId;
}
public BatchApproveUnionApplyRequestBody setLinkDeptId(Long linkDeptId) {
this.linkDeptId = linkDeptId;
return this;
}
public Long getLinkDeptId() {
return this.linkDeptId;
}
public BatchApproveUnionApplyRequestBody setUnionRootName(String unionRootName) {
this.unionRootName = unionRootName;
return this;
}
public String getUnionRootName() {
return this.unionRootName;
}
}
}