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

com.aliyun.dingtalkim_1_0.models.GroupBanWordsRequest 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 GroupBanWordsRequest extends TeaModel {
    /**
     * example:
     * 

1

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

cidnvcxzklxv

*/ @NameInMap("openConversationId") public String openConversationId; @NameInMap("options") public java.util.Map options; public static GroupBanWordsRequest build(java.util.Map map) throws Exception { GroupBanWordsRequest self = new GroupBanWordsRequest(); return TeaModel.build(map, self); } public GroupBanWordsRequest setBanWordsMode(Integer banWordsMode) { this.banWordsMode = banWordsMode; return this; } public Integer getBanWordsMode() { return this.banWordsMode; } public GroupBanWordsRequest setOpenConversationId(String openConversationId) { this.openConversationId = openConversationId; return this; } public String getOpenConversationId() { return this.openConversationId; } public GroupBanWordsRequest 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