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

com.aliyun.dingtalkexclusive_1_0.models.GetExclusiveAccountAllOrgListResponseBody Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkexclusive_1_0.models;

import com.aliyun.tea.*;

public class GetExclusiveAccountAllOrgListResponseBody extends TeaModel {
    @NameInMap("orgInfoList")
    public java.util.List orgInfoList;

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

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

    public static class GetExclusiveAccountAllOrgListResponseBodyOrgInfoList extends TeaModel {
        /**
         * example:
         * 

ding32xxxxxxxxe0105d

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

true

*/ @NameInMap("isMainOrg") public Boolean isMainOrg; /** * example: *

http://xxx.dingtalk.com/xxx.jpg

*/ @NameInMap("logoUrl") public String logoUrl; /** * example: *

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

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

钉钉

*/ @NameInMap("orgName") public String orgName; public static GetExclusiveAccountAllOrgListResponseBodyOrgInfoList build(java.util.Map map) throws Exception { GetExclusiveAccountAllOrgListResponseBodyOrgInfoList self = new GetExclusiveAccountAllOrgListResponseBodyOrgInfoList(); return TeaModel.build(map, self); } public GetExclusiveAccountAllOrgListResponseBodyOrgInfoList setCorpId(String corpId) { this.corpId = corpId; return this; } public String getCorpId() { return this.corpId; } public GetExclusiveAccountAllOrgListResponseBodyOrgInfoList setIsMainOrg(Boolean isMainOrg) { this.isMainOrg = isMainOrg; return this; } public Boolean getIsMainOrg() { return this.isMainOrg; } public GetExclusiveAccountAllOrgListResponseBodyOrgInfoList setLogoUrl(String logoUrl) { this.logoUrl = logoUrl; return this; } public String getLogoUrl() { return this.logoUrl; } public GetExclusiveAccountAllOrgListResponseBodyOrgInfoList setOrgFullName(String orgFullName) { this.orgFullName = orgFullName; return this; } public String getOrgFullName() { return this.orgFullName; } public GetExclusiveAccountAllOrgListResponseBodyOrgInfoList setOrgName(String orgName) { this.orgName = orgName; return this; } public String getOrgName() { return this.orgName; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy