com.byteplus.model.live.v20200801.UpdateRelaySourceV3BodyGroupDetailsItemServersItem Maven / Gradle / Ivy
package com.byteplus.model.live.v20200801;
import com.alibaba.fastjson.JSON;
import java.util.Map;
/**
* UpdateRelaySourceV3BodyGroupDetailsItemServersItem
*/
@lombok.Data
public final class UpdateRelaySourceV3BodyGroupDetailsItemServersItem {
/**
* 权重
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Weight")
private String weight;
/**
* 回源协议,支持两种回源协议。
*
*
*
* - rtmp
*
* - flv
*/
@com.alibaba.fastjson.annotation.JSONField(name = "RelaySourceProtocol")
private String relaySourceProtocol;
/**
* 回源地址
*/
@com.alibaba.fastjson.annotation.JSONField(name = "RelaySourceDomain")
private String relaySourceDomain;
/**
* 回源Host
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Host")
private String host;
/**
* 自定义回源参数,缺省情况下为空。格式为 `"Key":"Value"`,例如,`"domain":"live.push.net",`
*/
@com.alibaba.fastjson.annotation.JSONField(name = "RelaySourceParams")
private Map relaySourceParams;
/**
* TODO
*/
@com.alibaba.fastjson.annotation.JSONField(name = "OutboundConfig")
private UpdateRelaySourceV3BodyGroupDetailsItemServersItemOutboundConfig outboundConfig;
@Override
public String toString() {
return JSON.toJSONString(this);
}
}