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

com.aliyun.dingtalkconference_1_0.models.MuteAllRequest 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.dingtalkconference_1_0.models;

import com.aliyun.tea.*;

public class MuteAllRequest extends TeaModel {
    /**
     * 

This parameter is required.

* * example: *

mute

*/ @NameInMap("action") public String action; @NameInMap("forceMute") public Boolean forceMute; public static MuteAllRequest build(java.util.Map map) throws Exception { MuteAllRequest self = new MuteAllRequest(); return TeaModel.build(map, self); } public MuteAllRequest setAction(String action) { this.action = action; return this; } public String getAction() { return this.action; } public MuteAllRequest setForceMute(Boolean forceMute) { this.forceMute = forceMute; return this; } public Boolean getForceMute() { return this.forceMute; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy