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

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

import com.aliyun.tea.*;

public class StopStreamOutRequest extends TeaModel {
    // 是否停止所有流,为true时,则不理会streamId字段
    @NameInMap("stopAllStream")
    public Boolean stopAllStream;

    // 流id
    @NameInMap("streamId")
    public String streamId;

    // 用户id
    @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 - 2024 Weber Informatics LLC | Privacy Policy