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

com.aliyun.dingtalkdevicemng_1_0.models.PullUserToGroupRequest 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.dingtalkdevicemng_1_0.models;

import com.aliyun.tea.*;

public class PullUserToGroupRequest extends TeaModel {
    // 开放群唯一标识
    @NameInMap("openConversationId")
    public String openConversationId;

    // 入群用户唯一标识列表
    @NameInMap("userIds")
    public java.util.List userIds;

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

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

    public PullUserToGroupRequest setUserIds(java.util.List userIds) {
        this.userIds = userIds;
        return this;
    }
    public java.util.List getUserIds() {
        return this.userIds;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy