com.aliyun.dingtalkindustry_1_0.models.CustomizeContactEmpListResponseBody 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.dingtalkindustry_1_0.models;
import com.aliyun.tea.*;
public class CustomizeContactEmpListResponseBody extends TeaModel {
// 人员信息列表
@NameInMap("content")
public java.util.List content;
public static CustomizeContactEmpListResponseBody build(java.util.Map map) throws Exception {
CustomizeContactEmpListResponseBody self = new CustomizeContactEmpListResponseBody();
return TeaModel.build(map, self);
}
public CustomizeContactEmpListResponseBody setContent(java.util.List content) {
this.content = content;
return this;
}
public java.util.List getContent() {
return this.content;
}
public static class CustomizeContactEmpListResponseBodyContent extends TeaModel {
// 人员姓名
@NameInMap("name")
public String name;
// 人员Id
@NameInMap("userId")
public String userId;
public static CustomizeContactEmpListResponseBodyContent build(java.util.Map map) throws Exception {
CustomizeContactEmpListResponseBodyContent self = new CustomizeContactEmpListResponseBodyContent();
return TeaModel.build(map, self);
}
public CustomizeContactEmpListResponseBodyContent setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public CustomizeContactEmpListResponseBodyContent setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}
}