All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkcontact_1_0.models.BatchApproveUnionApplyRequest Maven / Gradle / Ivy

There is a newer version: 2.1.30
Show newest version
// 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;
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy