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.30
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 {
    // 操作类型:0 不禁言;1:禁言
    @NameInMap("banWordsType")
    public Integer banWordsType;

    // 群id
    @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