
com.aliyun.dingtalkproject_1_0.models.GetProjectMemebersRequest Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkproject_1_0.models;
import com.aliyun.tea.*;
public class GetProjectMemebersRequest extends TeaModel {
/**
* example:
* 10
*/
@NameInMap("maxResults")
public Integer maxResults;
/**
* example:
* 60a2187eb72xxxxxxx
*/
@NameInMap("projectRoleId")
public String projectRoleId;
/**
* example:
* 55
*/
@NameInMap("skip")
public Integer skip;
/**
* example:
* 60a2187eb72xxxxxxx,60a2187eb72xxxxxxx
*/
@NameInMap("userIds")
public String userIds;
public static GetProjectMemebersRequest build(java.util.Map map) throws Exception {
GetProjectMemebersRequest self = new GetProjectMemebersRequest();
return TeaModel.build(map, self);
}
public GetProjectMemebersRequest setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
return this;
}
public Integer getMaxResults() {
return this.maxResults;
}
public GetProjectMemebersRequest setProjectRoleId(String projectRoleId) {
this.projectRoleId = projectRoleId;
return this;
}
public String getProjectRoleId() {
return this.projectRoleId;
}
public GetProjectMemebersRequest setSkip(Integer skip) {
this.skip = skip;
return this;
}
public Integer getSkip() {
return this.skip;
}
public GetProjectMemebersRequest setUserIds(String userIds) {
this.userIds = userIds;
return this;
}
public String getUserIds() {
return this.userIds;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy