com.aliyun.dingtalkindustry_1_0.models.QueryAllMemberByGroupResponseBody 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 QueryAllMemberByGroupResponseBody 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 QueryAllMemberByGroupResponseBody build(java.util.Map map) throws Exception {
QueryAllMemberByGroupResponseBody self = new QueryAllMemberByGroupResponseBody();
return TeaModel.build(map, self);
}
public QueryAllMemberByGroupResponseBody setContent(java.util.List content) {
this.content = content;
return this;
}
public java.util.List getContent() {
return this.content;
}
public QueryAllMemberByGroupResponseBody setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
return this;
}
public Integer getCurrentPage() {
return this.currentPage;
}
public QueryAllMemberByGroupResponseBody setTotalCount(Long totalCount) {
this.totalCount = totalCount;
return this;
}
public Long getTotalCount() {
return this.totalCount;
}
public QueryAllMemberByGroupResponseBody setTotalPages(Integer totalPages) {
this.totalPages = totalPages;
return this;
}
public Integer getTotalPages() {
return this.totalPages;
}
public static class QueryAllMemberByGroupResponseBodyContent 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 QueryAllMemberByGroupResponseBodyContent build(java.util.Map map) throws Exception {
QueryAllMemberByGroupResponseBodyContent self = new QueryAllMemberByGroupResponseBodyContent();
return TeaModel.build(map, self);
}
public QueryAllMemberByGroupResponseBodyContent setJobNum(String jobNum) {
this.jobNum = jobNum;
return this;
}
public String getJobNum() {
return this.jobNum;
}
public QueryAllMemberByGroupResponseBodyContent setUid(String uid) {
this.uid = uid;
return this;
}
public String getUid() {
return this.uid;
}
public QueryAllMemberByGroupResponseBodyContent setUserName(String userName) {
this.userName = userName;
return this;
}
public String getUserName() {
return this.userName;
}
}
}