
com.aliyun.dingtalkconference_1_0.models.StopStreamOutRequest Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkconference_1_0.models;
import com.aliyun.tea.*;
public class StopStreamOutRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* true
*/
@NameInMap("stopAllStream")
public Boolean stopAllStream;
/**
* This parameter is required.
*
* example:
* 27SaQ3iiHLN0uwqcPisedfreNwiEiE
*/
@NameInMap("streamId")
public String streamId;
/**
* This parameter is required.
*/
@NameInMap("unionId")
public String unionId;
public static StopStreamOutRequest build(java.util.Map map) throws Exception {
StopStreamOutRequest self = new StopStreamOutRequest();
return TeaModel.build(map, self);
}
public StopStreamOutRequest setStopAllStream(Boolean stopAllStream) {
this.stopAllStream = stopAllStream;
return this;
}
public Boolean getStopAllStream() {
return this.stopAllStream;
}
public StopStreamOutRequest setStreamId(String streamId) {
this.streamId = streamId;
return this;
}
public String getStreamId() {
return this.streamId;
}
public StopStreamOutRequest setUnionId(String unionId) {
this.unionId = unionId;
return this;
}
public String getUnionId() {
return this.unionId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy