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

com.aliyun.dingtalkproject_1_0.models.GetProjectMemebersResponseBody 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 GetProjectMemebersResponseBody extends TeaModel {
    @NameInMap("result")
    public java.util.List result;

    public static GetProjectMemebersResponseBody build(java.util.Map map) throws Exception {
        GetProjectMemebersResponseBody self = new GetProjectMemebersResponseBody();
        return TeaModel.build(map, self);
    }

    public GetProjectMemebersResponseBody setResult(java.util.List result) {
        this.result = result;
        return this;
    }
    public java.util.List getResult() {
        return this.result;
    }

    public static class GetProjectMemebersResponseBodyResult extends TeaModel {
        /**
         * example:
         * 

62c25e3b376ec29c45xxxxx

*/ @NameInMap("memberId") @Deprecated public String memberId; /** * example: *

0

*/ @NameInMap("role") public Integer role; @NameInMap("roleIds") public java.util.List roleIds; /** * example: *

0715153011125xxxx

*/ @NameInMap("userId") public String userId; public static GetProjectMemebersResponseBodyResult build(java.util.Map map) throws Exception { GetProjectMemebersResponseBodyResult self = new GetProjectMemebersResponseBodyResult(); return TeaModel.build(map, self); } public GetProjectMemebersResponseBodyResult setMemberId(String memberId) { this.memberId = memberId; return this; } public String getMemberId() { return this.memberId; } public GetProjectMemebersResponseBodyResult setRole(Integer role) { this.role = role; return this; } public Integer getRole() { return this.role; } public GetProjectMemebersResponseBodyResult setRoleIds(java.util.List roleIds) { this.roleIds = roleIds; return this; } public java.util.List getRoleIds() { return this.roleIds; } public GetProjectMemebersResponseBodyResult setUserId(String userId) { this.userId = userId; return this; } public String getUserId() { return this.userId; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy