com.aliyun.dingtalkindustry_1_0.models.QueryAllGroupRequest 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 QueryAllGroupRequest extends TeaModel {
/**
* example:
* 1
*/
@NameInMap("pageNumber")
public Integer pageNumber;
/**
* example:
* 200
*/
@NameInMap("pageSize")
public Integer pageSize;
public static QueryAllGroupRequest build(java.util.Map map) throws Exception {
QueryAllGroupRequest self = new QueryAllGroupRequest();
return TeaModel.build(map, self);
}
public QueryAllGroupRequest setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public QueryAllGroupRequest setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
}