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.88
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 {
        /**
         * 

This parameter is required.

* * example: *

ding32xxxxxxxxe0105d

*/ @NameInMap("corpId") public String corpId; /** *

This parameter is required.

* * example: *

testCode

*/ @NameInMap("domain") public String domain; /** *

This parameter is required.

* * example: *

钉钉(中国)信息技术有限公司

*/ @NameInMap("orgFullName") public String orgFullName; /** *

This parameter is required.

* * example: *

钉钉

*/ @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 - 2025 Weber Informatics LLC | Privacy Policy