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

com.aliyun.dingtalkdevicemng_1_0.models.PullUserToGroupRequest Maven / Gradle / Ivy

// 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 {
    /**
     * 

This parameter is required.

* * example: *

xxxx

*/ @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 - 2025 Weber Informatics LLC | Privacy Policy