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

com.aliyun.dingtalkim_1_0.models.GroupManageReduceRequest 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.dingtalkim_1_0.models;

import com.aliyun.tea.*;

public class GroupManageReduceRequest extends TeaModel {
    /**
     * example:
     * 

200

*/ @NameInMap("capacityLimit") public Integer capacityLimit; /** * example: *

cidnvcxzklxv

*/ @NameInMap("openConversationId") public String openConversationId; @NameInMap("options") public java.util.Map options; public static GroupManageReduceRequest build(java.util.Map map) throws Exception { GroupManageReduceRequest self = new GroupManageReduceRequest(); return TeaModel.build(map, self); } public GroupManageReduceRequest setCapacityLimit(Integer capacityLimit) { this.capacityLimit = capacityLimit; return this; } public Integer getCapacityLimit() { return this.capacityLimit; } public GroupManageReduceRequest setOpenConversationId(String openConversationId) { this.openConversationId = openConversationId; return this; } public String getOpenConversationId() { return this.openConversationId; } public GroupManageReduceRequest setOptions(java.util.Map options) { this.options = options; return this; } public java.util.Map getOptions() { return this.options; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy