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

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

There is a newer version: 2.1.67
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 ListOwnedOrgByStaffIdResponseBody extends TeaModel {
    @NameInMap("orgList")
    public java.util.List orgList;

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

    public ListOwnedOrgByStaffIdResponseBody setOrgList(java.util.List orgList) {
        this.orgList = orgList;
        return this;
    }
    public java.util.List getOrgList() {
        return this.orgList;
    }

    public static class ListOwnedOrgByStaffIdResponseBodyOrgList extends TeaModel {
        /**
         * 

This parameter is required.

* * example: *

corpIdxxx

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

This parameter is required.

* * example: *

corpNamexxx

*/ @NameInMap("corpName") public String corpName; public static ListOwnedOrgByStaffIdResponseBodyOrgList build(java.util.Map map) throws Exception { ListOwnedOrgByStaffIdResponseBodyOrgList self = new ListOwnedOrgByStaffIdResponseBodyOrgList(); return TeaModel.build(map, self); } public ListOwnedOrgByStaffIdResponseBodyOrgList setCorpId(String corpId) { this.corpId = corpId; return this; } public String getCorpId() { return this.corpId; } public ListOwnedOrgByStaffIdResponseBodyOrgList setCorpName(String corpName) { this.corpName = corpName; return this; } public String getCorpName() { return this.corpName; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy