com.aliyun.dingtalkcontact_1_0.models.ListOwnedOrgByStaffIdResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// 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;
}
}
}