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

com.aliyun.dingtalkexclusive_1_0.models.ListJoinOrgInfoResponseBody 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.dingtalkexclusive_1_0.models;

import com.aliyun.tea.*;

public class ListJoinOrgInfoResponseBody extends TeaModel {
    // 组织信息列表
    @NameInMap("orgInfoList")
    public java.util.List orgInfoList;

    public static ListJoinOrgInfoResponseBody build(java.util.Map map) throws Exception {
        ListJoinOrgInfoResponseBody self = new ListJoinOrgInfoResponseBody();
        return TeaModel.build(map, self);
    }

    public ListJoinOrgInfoResponseBody setOrgInfoList(java.util.List orgInfoList) {
        this.orgInfoList = orgInfoList;
        return this;
    }
    public java.util.List getOrgInfoList() {
        return this.orgInfoList;
    }

    public static class ListJoinOrgInfoResponseBodyOrgInfoList extends TeaModel {
        // 组织ID
        @NameInMap("corpId")
        public String corpId;

        // 组织代码
        @NameInMap("domain")
        public String domain;

        // 组织全称
        @NameInMap("orgFullName")
        public String orgFullName;

        // 组织名称
        @NameInMap("orgName")
        public Long orgName;

        public static ListJoinOrgInfoResponseBodyOrgInfoList build(java.util.Map map) throws Exception {
            ListJoinOrgInfoResponseBodyOrgInfoList self = new ListJoinOrgInfoResponseBodyOrgInfoList();
            return TeaModel.build(map, self);
        }

        public ListJoinOrgInfoResponseBodyOrgInfoList setCorpId(String corpId) {
            this.corpId = corpId;
            return this;
        }
        public String getCorpId() {
            return this.corpId;
        }

        public ListJoinOrgInfoResponseBodyOrgInfoList setDomain(String domain) {
            this.domain = domain;
            return this;
        }
        public String getDomain() {
            return this.domain;
        }

        public ListJoinOrgInfoResponseBodyOrgInfoList setOrgFullName(String orgFullName) {
            this.orgFullName = orgFullName;
            return this;
        }
        public String getOrgFullName() {
            return this.orgFullName;
        }

        public ListJoinOrgInfoResponseBodyOrgInfoList setOrgName(Long orgName) {
            this.orgName = orgName;
            return this;
        }
        public Long getOrgName() {
            return this.orgName;
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy