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

com.qiniu.rtc.model.ForwardParam Maven / Gradle / Ivy

There is a newer version: 7.17.0
Show newest version
package com.qiniu.rtc.model;

import lombok.Data;

import java.util.List;

/**
 * 转推的参数
 */
@Data
public class ForwardParam {
    private String id;
    private String publishUrl;
    private String playerId;
    private List tracks;

    public ForwardParam(String id, String publishUrl, String playerId) {
        this.id = id;
        this.publishUrl = publishUrl;
        this.playerId = playerId;
    }

    @Data
    public static class TrackInfo {
        private String trackId;

        public TrackInfo(String trackId) {
            this.trackId = trackId;
        }

        public TrackInfo() {
        }
    }

    public ForwardParam() {
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy