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

com.aliyun.dingtalkim_1_0.models.UpdateTheGroupRolesOfGroupMemberRequest Maven / Gradle / Ivy

There is a newer version: 2.1.30
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkim_1_0.models;

import com.aliyun.tea.*;

public class UpdateTheGroupRolesOfGroupMemberRequest extends TeaModel {
    // 开放群ID
    @NameInMap("openConversationId")
    public String openConversationId;

    // 群角色列表
    @NameInMap("openRoleIds")
    public java.util.List openRoleIds;

    // 用户ID
    @NameInMap("userId")
    public String userId;

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

    public UpdateTheGroupRolesOfGroupMemberRequest setOpenConversationId(String openConversationId) {
        this.openConversationId = openConversationId;
        return this;
    }
    public String getOpenConversationId() {
        return this.openConversationId;
    }

    public UpdateTheGroupRolesOfGroupMemberRequest setOpenRoleIds(java.util.List openRoleIds) {
        this.openRoleIds = openRoleIds;
        return this;
    }
    public java.util.List getOpenRoleIds() {
        return this.openRoleIds;
    }

    public UpdateTheGroupRolesOfGroupMemberRequest setUserId(String userId) {
        this.userId = userId;
        return this;
    }
    public String getUserId() {
        return this.userId;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy