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

com.aliyun.dingtalkconference_1_0.models.StartStreamOutRequest 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 StartStreamOutRequest extends TeaModel {
    // 布局
    @NameInMap("mode")
    public String mode;

    // 是否需要主持人加入后才允许推流
    @NameInMap("needHostJoin")
    public Boolean needHostJoin;

    // 小窗位置
    @NameInMap("smallWindowPosition")
    public String smallWindowPosition;

    @NameInMap("streamName")
    public String streamName;

    // 推流地址列表, 最多10个,需要以RTMP开头
    @NameInMap("streamUrlList")
    public java.util.List streamUrlList;

    // 主持人UID
    @NameInMap("unionId")
    public String unionId;

    public static StartStreamOutRequest build(java.util.Map map) throws Exception {
        StartStreamOutRequest self = new StartStreamOutRequest();
        return TeaModel.build(map, self);
    }

    public StartStreamOutRequest setMode(String mode) {
        this.mode = mode;
        return this;
    }
    public String getMode() {
        return this.mode;
    }

    public StartStreamOutRequest setNeedHostJoin(Boolean needHostJoin) {
        this.needHostJoin = needHostJoin;
        return this;
    }
    public Boolean getNeedHostJoin() {
        return this.needHostJoin;
    }

    public StartStreamOutRequest setSmallWindowPosition(String smallWindowPosition) {
        this.smallWindowPosition = smallWindowPosition;
        return this;
    }
    public String getSmallWindowPosition() {
        return this.smallWindowPosition;
    }

    public StartStreamOutRequest setStreamName(String streamName) {
        this.streamName = streamName;
        return this;
    }
    public String getStreamName() {
        return this.streamName;
    }

    public StartStreamOutRequest setStreamUrlList(java.util.List streamUrlList) {
        this.streamUrlList = streamUrlList;
        return this;
    }
    public java.util.List getStreamUrlList() {
        return this.streamUrlList;
    }

    public StartStreamOutRequest setUnionId(String unionId) {
        this.unionId = unionId;
        return this;
    }
    public String getUnionId() {
        return this.unionId;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy