com.aliyun.dingtalkproject_1_0.models.GetProjectGroupRequest 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.dingtalkproject_1_0.models;
import com.aliyun.tea.*;
public class GetProjectGroupRequest extends TeaModel {
/**
* example:
* 10
*/
@NameInMap("pageSize")
public Integer pageSize;
/**
* example:
* 01525006000512579xxx
*/
@NameInMap("viewerId")
public String viewerId;
public static GetProjectGroupRequest build(java.util.Map map) throws Exception {
GetProjectGroupRequest self = new GetProjectGroupRequest();
return TeaModel.build(map, self);
}
public GetProjectGroupRequest setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
public GetProjectGroupRequest setViewerId(String viewerId) {
this.viewerId = viewerId;
return this;
}
public String getViewerId() {
return this.viewerId;
}
}