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

com.aliyun.dingtalkexclusive_1_0.models.BanOrOpenGroupWordsRequest 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.dingtalkexclusive_1_0.models;

import com.aliyun.tea.*;

public class BanOrOpenGroupWordsRequest extends TeaModel {
    /**
     * 

This parameter is required.

*/ @NameInMap("banWordsType") public Integer banWordsType; /** *

This parameter is required.

*/ @NameInMap("openConverationId") public String openConverationId; public static BanOrOpenGroupWordsRequest build(java.util.Map map) throws Exception { BanOrOpenGroupWordsRequest self = new BanOrOpenGroupWordsRequest(); return TeaModel.build(map, self); } public BanOrOpenGroupWordsRequest setBanWordsType(Integer banWordsType) { this.banWordsType = banWordsType; return this; } public Integer getBanWordsType() { return this.banWordsType; } public BanOrOpenGroupWordsRequest setOpenConverationId(String openConverationId) { this.openConverationId = openConverationId; return this; } public String getOpenConverationId() { return this.openConverationId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy