com.aliyun.dingtalkindustry_1_0.models.QueryAllMemberByDeptResponseBody 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 QueryAllMemberByDeptResponseBody extends TeaModel {
@NameInMap("content")
public java.util.List content;
/**
* This parameter is required.
*/
@NameInMap("currentPage")
public Integer currentPage;
/**
* This parameter is required.
*/
@NameInMap("totalCount")
public Long totalCount;
/**
* This parameter is required.
*
* example:
* 32
*/
@NameInMap("totalPages")
public Integer totalPages;
public static QueryAllMemberByDeptResponseBody build(java.util.Map map) throws Exception {
QueryAllMemberByDeptResponseBody self = new QueryAllMemberByDeptResponseBody();
return TeaModel.build(map, self);
}
public QueryAllMemberByDeptResponseBody setContent(java.util.List content) {
this.content = content;
return this;
}
public java.util.List getContent() {
return this.content;
}
public QueryAllMemberByDeptResponseBody setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
return this;
}
public Integer getCurrentPage() {
return this.currentPage;
}
public QueryAllMemberByDeptResponseBody setTotalCount(Long totalCount) {
this.totalCount = totalCount;
return this;
}
public Long getTotalCount() {
return this.totalCount;
}
public QueryAllMemberByDeptResponseBody setTotalPages(Integer totalPages) {
this.totalPages = totalPages;
return this;
}
public Integer getTotalPages() {
return this.totalPages;
}
public static class QueryAllMemberByDeptResponseBodyContent extends TeaModel {
/**
* This parameter is required.
*
* example:
* 0001
*/
@NameInMap("jobNum")
public String jobNum;
/**
* This parameter is required.
*
* example:
* u0398812938821
*/
@NameInMap("uid")
public String uid;
/**
* This parameter is required.
*
* example:
* 用户名称
*/
@NameInMap("userName")
public String userName;
public static QueryAllMemberByDeptResponseBodyContent build(java.util.Map map) throws Exception {
QueryAllMemberByDeptResponseBodyContent self = new QueryAllMemberByDeptResponseBodyContent();
return TeaModel.build(map, self);
}
public QueryAllMemberByDeptResponseBodyContent setJobNum(String jobNum) {
this.jobNum = jobNum;
return this;
}
public String getJobNum() {
return this.jobNum;
}
public QueryAllMemberByDeptResponseBodyContent setUid(String uid) {
this.uid = uid;
return this;
}
public String getUid() {
return this.uid;
}
public QueryAllMemberByDeptResponseBodyContent setUserName(String userName) {
this.userName = userName;
return this;
}
public String getUserName() {
return this.userName;
}
}
}