All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkproject_1_0.models.GetProjectMemebersRequest Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// 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 - 2024 Weber Informatics LLC | Privacy Policy